如何在 VB 中播放声音文件

2008-04-09 04:40:43来源:互联网 阅读 ()

新老客户大回馈,云服务器低至5折

Sub PlayWav(SoundName As String)
Dim tmpSoundName As String
Dim wFlags%, X%
, 声明语句部分 (请置于模块中)
,**********************************
,#If Win32 Then
,Public Declare Function sndPlaySound& Lib "winmm.dll" Alias
"sndPlaySoundA" (ByVal lpszSoundName As String, ByVal uFlags As Long) ,#Else
,Public Declare Function sndPlaySound% Lib "mmsystem.dll" (ByVal
lpszSoundName As String, ByVal uFlags As Integer)
,#End If
,WIN32
, **********************************
, WAV Sound values
,Global Const SND_SYNC = &H0
,Global Const SND_ASYNC = &H1
,Global Const SND_NODEFAULT = &H2
,Global Const SND_LOOP = &H8
,Global Const SND_NOSTOP = &H10
, **********************************
, *** pathWavFiles 是声音文件存放的路径
tmpSoundName = pathWavFiles & SoundName
wFlags% = SND_ASYNC Or SND_NODEFAULT
X% = sndPlaySound(tmpSoundName, wFlags%)
End Sub

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:强制重画窗口某一区域

下一篇:用VB设计E-mail程序

热门词条
热门标签