Author
Language
Operating Systems
Option Explicit Public Declare Function sndPlaySound Lib "winmm.dll" Alias "sndPlaySoundA" _ (ByVal lpszSoundName As String, ByVal uFlags As Long) As Long
Option Explicit Private Sub Command1_Click() sndPlaySound "C:\WINDOWS\MEDIA\Start.wav", &H1 End Sub