請問如何加入聲音?
查詢關於mci方面的api可以快速的使用播放功能..
Option Explicit Private Declare Function sndPlaySound Lib "winmm.dll" Alias "sndPlaySoundA" (ByVal lpszSoundName As String, ByVal uFlags As Long) As Long Private Sub Form_Load() sndPlaySound "C:\ringin.wav", &H1 End Sub