鸳鸯籽的功效与作用:在VB中如何添加背景音乐?

来源:百度文库 编辑:高校问答 时间:2024/05/02 08:03:01

Private Declare Function sndPlaySound Lib "winmm.dll" Alias "sndPlaySoundA" (ByVal lpszSoundName As String, ByVal uFlags As Long) As Long

Private Sub Form_Load()
Call sndPlaySound("c:\test.wav", 1)
End Sub