Hi,
How to set delay in vbscript??
WScript.Sleep(100) does not work on Windows XP, Vista
Any help!
Hi,
How to set delay in vbscript??
WScript.Sleep(100) does not work on Windows XP, Vista
Any help!
if it is VBScript, it should be
WScript.Sleep 100
If it is javascript
WScript.Sleep(100);
Work this end (XP).
Create a new file, call it test.vbs. Put this in it.
WScript.Sleep(1000)
MsgBox("TEST")
Run it, notice the delay before the message box is shown.
Note, the number is in Milliseconds, so 1000 is 1 second.
Time of Sleep Function is in milliseconds (ms)
if you want 3 minutes, thats the way to do it:
WScript.Sleep(1000 * 60 * 3)