返回首页
当前位置: 主页 > Excel教程 > Excel VBA教程 >

EXCEL利用VBA播放WAV声音文件

时间:2012-07-21 20:06来源:Office教程学习网 www.office68.com编辑:麦田守望者

如果用VBA代码播放WAV声音文件,可以用下面的代码:

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


Sub PlayWavFile()
sndPlaySound32 "C:\Windows\Media\ding.wav", 0&
End Sub


运行上述代码将播放“C:\Windows\Media”文件夹中的ding.wav声音文件。

------分隔线----------------------------
标签(Tag):excel excel2007 excel2010 excel2003 excel技巧 excel教程 excel实例教程 excel2010技巧
------分隔线----------------------------
推荐内容
猜你感兴趣