Windows中的Asterisk程序事件是什么?


Answers:


7

与Windows“信息”警报类型(相对于CriticalExclamationQuestion)关联的是声音/事件。

我们可以通过创建一个快速的VBS脚本来创建一个新的消息框(请参阅:MsgBox function)并将其MsgBoxStyle设置为包括“ Information”标志(64)来演示这一点。

因此,创建一个名为info.vbs或类似名称的文本文件,并将其放入其中:

x=msgbox("Here's some info", 64, "Information Dialogue")

保存它,然后使用wscript info.vbs或运行它cscript info.vbs

它将弹出一个带有“确定”按钮(标志0)和“信息”图标的框,并播放伴随的声音事件(“星号”)。

作为比较,如果将标志更改为其他(例如Critical)(标志16),它将显示匹配的Critical图标,并播放“ Critical Stop”声音。

希望能清除它。:)

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.