I don't know if this is still useful, but basically all you need is to add
this from the Windws SDK
#include
..
..
..
PlaySound (strwav,NULL, SND_ASYNC); //Send sound asynchronously, cancelling
any previous sound
SND_SYNC means wait till what's playing is finished before playing this.
The ASYNC means cancel anything previously playing and start playing this.
Luis Villa
"zener" wrote in message
news:506500000008000000A02E0000-1003545641000@exchange.ni.com...
> I need to play .wav files in relatively quick sucession. Can I play
> them from CVI? And if so, without lauching media player all the time?