Display a message box with a timeout value

前端 未结 5 2071
轻奢々
轻奢々 2020-12-06 02:55

The question comes from code like this.

Set scriptshell = CreateObject(\"wscript.shell\")
    Const TIMEOUT_IN_SECS = 60
    Select Case scriptshell.popup(\"         


        
5条回答
  •  不知归路
    2020-12-06 03:47

    Easy

    Call CreateObject("WScript.Shell").Popup("Timed message box", 1, "Title", vbOKOnly)
    

提交回复
热议问题