ifix声音报警
利用外部声音文件报警实例教程首先选择调度、事件调度。事件
调度,条件随你选择,我选的是只要有报警产生,然后打开
脚本:在事件 sub脚本的外面,也就是整个打开脚本的最上头输入一
个私有声明 Private Declare FuncTIon sndPlaySound Lib "winmm.dll"
Alias "sndPlaySoundA" (ByVal lpszSoundName As String, ByVal uFlags
As Long) As Long
然后在事件 sub里面输入脚本如下:Dim soundfile As String, result As
Long soundfile = "D:\工程资料\test\test \ALARM1.wav" result =
sndPlaySound(soundfile, SND_ASYNC),路径你可以改,
用户评论