Hello RobbeK
To play a sound (wav) try this here:
Test:Declare Function PlaySound Lib "winmm.dll" Alias "PlaySoundA" Alias "PlaySound" (ByVal lpszName As String, ByVal hModule As Long, ByVal dwFlags As Long) As Long
PaySound "myWav",0,1
Or Beep
Declare Function Beep Lib "kernel32.dll" Alias "Beep" (ByVal dwFreq As Long, ByVal dwDuration As Long) As Long
Test:
Beep 440,500
Bookmarks