VBcoders Browse New Submit Contact Sign In

No account? Register free

Forgot password?

Make Your OwnWAVPlayer

Matt Evans  (6 Submissions)   Windows API Call/Explanation   Visual Basic 3.0   Unknown Difficulty   Wed 3rd February 2021

This is the code to *PLAY*, *STOP*, and *LOOP* WAV files. Its really easy! even for a beginner! You can make your own WAV Player!

API Declarations
Declare Function sndPlaySound Lib "winmm.dll" Alias "sndPlaySoundA" (ByVal lpszSoundName As String, ByVal uFlags As Long) As Public Const SND_SYNC = &H0
Public Const SND_ASYNC = &H1
Public Const SND_NODEFAULT = &H2
Public Const SND_MEMORY = &H4
Public Const SND_LOOP = &H8
Public Const SND_NOSTOP = &H10

Rate Make Your OwnWAVPlayer (5(5 Vote))
Make Your OwnWAVPlayer.bas

Make Your OwnWAVPlayer Comments

No comments yet — be the first to post one!

Post a Comment

0/1000 characters