Plays a .WAV file
Plays a .WAV file
API Declarations
(ByVal lpszSoundName As String, ByVal uFlags As Long) As Long
Const SND_SYNC = &H0000
Const SND_ASYNC = &H0001
Const SND_NODEFAULT = &H0002
Const SND_LOOP = &H0008
Const SND_NOSTOP = &H0010
Rate Plays a .WAV file
(2(2 Vote))
SoundFile$ = "c:\windows\chimes.wav"
wFlags% = SND_ASYNC Or SND_NODEFAULT
x% = sndPlaySound(SoundFile$,wFlags%)
Plays a .WAV file Comments
No comments yet — be the first to post one!
Post a Comment