Musik in anwendung einfügen

Hi,
ich habe ein problem ich will in einer visual basic anwendung musik abspielen lassen (egal welches format) ich weiß nur nicht wie. kann mir vielleicht jemand helfen (mit etwas beispiel code).
Danke.

Vielleicht so:

Private Const SND\_APPLICATION = &H80 ' look for application specific association
Private Const SND\_ALIAS = &H10000 ' name is a WIN.INI [sounds] entry
Private Const SND\_ALIAS\_ID = &H110000 ' name is a WIN.INI [sounds] entry identifier
Private Const SND\_ASYNC = &H1 ' play asynchronously
Private Const SND\_FILENAME = &H20000 ' name is a file name
Private Const SND\_LOOP = &H8 ' loop the sound until next sndPlaySound
Private Const SND\_MEMORY = &H4 ' lpszSoundName points to a memory file
Private Const SND\_NODEFAULT = &H2 ' silence not default, if sound not found
Private Const SND\_NOSTOP = &H10 ' don't stop any currently playing sound
Private Const SND\_NOWAIT = &H2000 ' don't wait if the driver is busy
Private Const SND\_PURGE = &H40 ' purge non-static events for task
Private Const SND\_RESOURCE = &H40004 ' name is a resource name or atom
Private Const SND\_SYNC = &H0 ' play synchronously (default)
Private Declare Function PlaySound Lib "winmm.dll" Alias "PlaySoundA" (ByVal lpszName As String, ByVal hModule As Long, ByVal dwFlags As Long) As Long

Private Sub Form\_Load()
 PlaySound "C:\WINDOWS\MEDIA\TADA.WAV", ByVal 0&, SND\_FILENAME Or SND\_ASYNC

End Sub