Thank you Siddhartha and Cilu. Your comments and links have made me more confident about the VS 2005 "standard edition" so I am going to order that today. (Not planning to do anything serious with...
Thanks for replying. I gathered as much from a web search. My real question is, (a) Is MFC and ATL fully functional in the VS 2005 "standard edition" and (b) What is missing from the "standard...
I've been away from programming for a couple of years. I recently downloaded the VS 2005 Express Edition from the MS web site and tried compiling some old programs (which compile fine...
Yes, using a thread seems the proper thing to do in this case. You might also just have the thread send the data directly rather than posting a messge to the dialog etc.
The link provided by meisunknown is probably what you need, but in case you are asking how to check if some other application is running, and what you know is the name, then get my function...
I generally agree with the other comments. If you are looking for something really basic, then consider "Code" by Charles Petzold. It is somewhat long-winded, and experienced computer people may get...
When you create a process with CreateProcess(), it returns
the Process ID of the created process in the
"Process Information" structire. You can use
that to distinguish between multiple instances...
sndPlaySound() may be phased out. Use PlaySound instead.
If you already have the waveform in memory, then look
at the waveOutWrite() function (and the whole series
of related waveOut.. functions.