VBcoders Guest



Don't have an account yet? Register
 


Forgot Password?



Play wav sound file

by PPLBD (1 Submission)
Category: Windows API Call/Explanation
Compatability: Visual Basic 5.0
Difficulty: Unknown Difficulty
Originally Published: Sun 11th January 2009
Date Added: Mon 8th February 2021
Rating: (1 Votes)

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



'Public Sub cmdPlaysoundClick()

Dim ret As Long
ret = sndPlaySound("c:\windows\bee.wav", SND_SYNC)
End Sub


Download this snippet    Add to My Saved Code

Play wav sound file Comments

No comments have been posted about Play wav sound file. Why not be the first to post a comment about Play wav sound file.

Post your comment

Subject:
Message:
0/1000 characters