VBcoders Browse New Submit Contact Sign In

No account? Register free

Forgot password?

Play wav sound file

PPLBD  (1 Submission)   Windows API Call/Explanation   Visual Basic 5.0   Unknown Difficulty   Sun 11th January 2009   Mon 8th February 2021

Play wav sound file

API Declarations


Declare Function sndPlaySound Lib "winmm.dll" Alias "sndPlaySoundA" (ByVal lpszSoundName As String, ByVal uFlags As Long) As Long

Public Const SND_ALIAS = &H10000 ' name is a WIN.INI [sounds] entry
Public Const SND_ASYNC = &H1 ' play asynchronously
Public Const SND_LOOP = &H8 ' loop the sound until next sndPlaySound
Public Const SND_NOWAIT = &H2000 ' don't wait if the driver is busy
Public Const SND_SYNC = &H0 ' play synchronously (default)


Rate Play wav sound file (2(2 Vote))
Play wav sound file.bas

Play wav sound file Comments

No comments yet — be the first to post one!

Post a Comment

0/1000 characters