MSGbox in VBS that updates with value of variable

后端 未结 4 1063
别那么骄傲
别那么骄傲 2020-12-02 00:44

Just wondering how i could have a MSgbox that displays the value of a variable as it constantly changes. Basically a number has one added to it everytime it loops. I want to

4条回答
  •  时光取名叫无心
    2020-12-02 01:46

    A workaround would be to use PopUp

    Set objShell = WScript.CreateObject("WScript.Shell")
    For i = 1 To 3
        objShell.Popup i, 1, "AutoClose MsgBox Simulation", vbInformation+vbOKOnly
    Next
    

    This will "autoclose" the MsgBox lookalike after 1 second

提交回复
热议问题