Click here to Skip to main content
15,884,838 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Retrieve text from cursor position Pin
Cedric Moonen8-Sep-05 2:08
Cedric Moonen8-Sep-05 2:08 
GeneralRe: Retrieve text from cursor position Pin
Samik Karmakar8-Sep-05 2:23
Samik Karmakar8-Sep-05 2:23 
GeneralRe: Retrieve text from cursor position Pin
David Crow8-Sep-05 2:44
David Crow8-Sep-05 2:44 
QuestionAltering pattern for a brush Pin
Niklas L8-Sep-05 1:21
Niklas L8-Sep-05 1:21 
QuestionHow to play mp3 repeatedly Pin
Laffis8-Sep-05 1:15
Laffis8-Sep-05 1:15 
AnswerRe: How to play mp3 repeatedly Pin
Ravi Bhavnani8-Sep-05 2:23
professionalRavi Bhavnani8-Sep-05 2:23 
GeneralRe: How to play mp3 repeatedly Pin
Laffis8-Sep-05 7:12
Laffis8-Sep-05 7:12 
AnswerRe: How to play mp3 repeatedly Pin
Ravi Bhavnani8-Sep-05 7:21
professionalRavi Bhavnani8-Sep-05 7:21 
Assuming you know the name of the .mp3 file (I'm boldly assuming it's a file), you can simply do:
<code>// Start playing the file</code>
char szMp3File [MAX_PATH];
strcpy (szMp3File, "C:\\myFile.mp3");
VERIFY (::sndPlaySound (szMp3File, SND_LOOP | SND_ASYNC));

...

<code>// Stop playing the file</code>
VERIFY (::sndPlaySound (NULL, 0));
/ravi

My new year's resolution: 2048 x 1536
Home | Music | Articles | Freeware | Trips
ravib(at)ravib(dot)com

GeneralRe: How to play mp3 repeatedly Pin
Laffis8-Sep-05 8:12
Laffis8-Sep-05 8:12 
GeneralRe: How to play mp3 repeatedly Pin
Ravi Bhavnani8-Sep-05 8:22
professionalRavi Bhavnani8-Sep-05 8:22 
QuestionMsn Chat Window Pin
Ahmed_Barakat8-Sep-05 1:11
Ahmed_Barakat8-Sep-05 1:11 
GeneralRe: Msn Chat Window Pin
prasad_som8-Sep-05 3:02
prasad_som8-Sep-05 3:02 
QuestionMultiLanguage Support Pin
Identity Undisclosed8-Sep-05 1:08
Identity Undisclosed8-Sep-05 1:08 
AnswerRe: MultiLanguage Support Pin
MailtoGops8-Sep-05 2:42
MailtoGops8-Sep-05 2:42 
QuestionAbout SystemTray Pin
parims8-Sep-05 0:33
parims8-Sep-05 0:33 
AnswerRe: About SystemTray Pin
ThatsAlok8-Sep-05 0:41
ThatsAlok8-Sep-05 0:41 
AnswerRe: About SystemTray Pin
Mircea Puiu8-Sep-05 0:44
Mircea Puiu8-Sep-05 0:44 
QuestionSources of Filemon from sysinternals Pin
Dudi Avramov8-Sep-05 0:09
Dudi Avramov8-Sep-05 0:09 
AnswerRe: Sources of Filemon from sysinternals Pin
David Crow8-Sep-05 2:49
David Crow8-Sep-05 2:49 
GeneralRe: Sources of Filemon from sysinternals Pin
Dudi Avramov11-Sep-05 3:45
Dudi Avramov11-Sep-05 3:45 
QuestionDomain name Pin
Riily7-Sep-05 23:53
Riily7-Sep-05 23:53 
AnswerRe: Domain name Pin
ThatsAlok8-Sep-05 1:16
ThatsAlok8-Sep-05 1:16 
AnswerRe: Domain name Pin
Aamir Butt8-Sep-05 1:46
Aamir Butt8-Sep-05 1:46 
AnswerRe: Domain name Pin
ThatsAlok8-Sep-05 18:08
ThatsAlok8-Sep-05 18:08 
QuestionImage from CDC Pin
lanifis7-Sep-05 23:27
lanifis7-Sep-05 23:27 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.