vbscript脚本中,msgbox的提示,能不能不等待其返回,继续往下执行,执行后面的语句。
------解决方案--------------------------------------------------------
掌握原理和思路就有办法解决了。
关键是在于新进程:
- VBScript code
MyMsgBox "haha"MsgBox "hehe"Sub MyMsgBox(str) Set oShell = CreateObject("WScript.Shell") oShell.Run "cmd /c mshta vbscript:msgbox(""" & str & """)(self.close)",0End Sub
------解决方案--------------------------------------------------------
Set WSH = CreateObject("WScript.Shell")
WSH.Popup("ok", 2)
set wsh = nothing
用这个行吗