View Single Post
  #1  
Old 05-16-2004, 11:02 AM
mishka mishka is online now
Registered User
 
Join Date: 12-07-2003
Posts: 5
sleep in VBScript

Hello
Maybe its trivial but I fail to insert a sleep into a VBScript..

I've tried following pieces of code in "Run Script" action:

Sleep("200")
Sleep(200)
Sleep 200

Set shell = CreateObject("WScript.Shell")
Sleep("200")

Set shell = CreateObject("WScript.Shell")
Sleep(200)

Set shell = CreateObject("WScript.Shell")
Sleep 200

Please help..
Reply With Quote