Hello everyone.....
The code bellow is a program that output single_sound with every Character printed on the output screen...
include<iostream>
include<string>
include<Windows.h>
include<mmSystem.h>
using namespace std;
int main()
{
system("color 0A");
string s="Welcome";
for( int i=0;i<=10;i++)
{
for ( int j=0; j<s.length(); j++)
{
for( int k=0; k<1; k++)
{
cout<<s[j];
PlaySound("D:\\234004.wav",NULL,SND_LOOP);
break;
}
}
system("cls");
}
return 0;
}
The Problem is that I want to control the speed of LOOP.....
Can I Do this in PlaySound?
Thanks...