max,
If you are looking for a way to play a sound when your form opens, you can use something like this,
In a standard module:
Public Declare Function sndPlaySound Lib "winmm.dll" _
Alias "sndPlaySoundA" (ByVal lpszSoundName As String, _
ByVal uFlags As Long) As Long
Public Sub OpenFormWithSound()
Userform1.show
'--------------------
'CHANGE THE PATH BELOW TO THE SOUND FILE YOU WISH TO PLAY
sndPlaySound "C:\Windows\Media\Alarm07.wav", 1
End Sub
The above path is the Windows 10 path for default system media files.
HTH,
Maud
Bookmarks