首页 > Excel专区 > Excel函数 >

EXCEL利用VBA播放WAV声音文件

Excel函数 2022-02-14 21:56:11

如果用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声音文件。


标签: 代码利用声音文件播放excel函数

office教程网 Copyright © 2016-2020 http://www.office9.cn. Some Rights Reserved. 苏ICP备20040415号-9