如何在vbscript中提供信息符号?

时间:2016-04-16 06:54:27

标签: vbscript

我想在vbscript中提供信息的符号。

这是我的代码:

Set objShell = CreateObject( "WScript.Shell" )
lol=msgbox ("Update successful",10,"Information")

我想在消息“更新成功”之前提供信息(Exclaim)符号。 enter image description here

有人可以建议我如何提供吗?

1 个答案:

答案 0 :(得分:1)

使用vbInformation 那样:

lol=msgbox ("Update successful",vbInformation,"Information")

有关 MsgBox Constants

的详细信息