摘要: 要实现自动倒计时退出的消息框,代码如下: Set wsh = CreateObject("WScript.Shell") wsh.popup "设置完毕,3秒后自动退出!",3,"完毕!",0 set wsh=nothing 阅读全文
posted @ 2015-05-02 14:37 海尔卡特 阅读(2869) 评论(0) 推荐(0) 编辑
摘要: //或者使用chr(13),chr(10)效果一样 MsgBox "a"&chr(13)&"b"&chr(10)&"c" //带有警告标志的窗口 MsgBox "a"&chr(13)&"b"&chr(10)&"c",16 //显示确定取消按钮 MsgBox "a"&chr(13)&"b"&chr(10)&"c",1 //让 阅读全文
posted @ 2015-05-02 05:57 海尔卡特 阅读(5534) 评论(0) 推荐(0) 编辑