Private Declare Function sndPlaySound Lib "winmm.dll" (ByVal lpszSoundName As String, ByVal uFlags As Long) As Long
Public Function PlaySound(Pfad As String)
sndPlaySound Pfad, 0
End Function
Private Sub UserForm_Click()
End Sub
Private Sub UserForm_Initialize()
ComboBox1.AddItem ("p")
Call PlaySound("F:\Prodigy - Smack My Bitch Up.mp3")
End Sub
Ik heb dit gedaan en nu krijg ik de melding: Fout 453 tijdens uitvoering
Kan ingangspunt van DLL sndPlaySound in winmm.dll niet vinden
Weet iemand wat er misgaat?
VBA-er in nood
Public Function PlaySound(Pfad As String)
sndPlaySound Pfad, 0
End Function
Private Sub UserForm_Click()
End Sub
Private Sub UserForm_Initialize()
ComboBox1.AddItem ("p")
Call PlaySound("F:\Prodigy - Smack My Bitch Up.mp3")
End Sub
Ik heb dit gedaan en nu krijg ik de melding: Fout 453 tijdens uitvoering
Kan ingangspunt van DLL sndPlaySound in winmm.dll niet vinden
Weet iemand wat er misgaat?
VBA-er in nood
