vba code to run files

  • Thread starter Thread starter Bob
  • Start date Start date
B

Bob

What is the syntax to execute a wave file inside an Excel macro.
Specifically, I want to run Microsoft XP Ding?

Thank you
 
Put this anywhere...
Private Sub Test()
PlayWavFile "C:\Windows\Media\Microsoft Office 2002\Ding.wav"
End Sub

In a standard Code Module add this code...
'*******************************************
Private Declare Function PlaySound Lib "winmm.dll" Alias "PlaySoundA" _
(ByVal lpszName As String, hModule As Long, ByVal dwFlags As Long) As Long

Public Function PlayWavFile(WavFile As String) As String
Const SND_ASYNC = &H1
Const SND_FILENAME = &H20000
PlaySound WavFile, 0, SND_ASYNC Or SND_FILENAME
PlayWavFile = ""
End Function
'**************************************************
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top