What is the equivalent to the Wscript Sleep Method in VB?

  • Thread starter Thread starter Richard C.
  • Start date Start date
R

Richard C.

Windows Script Host
Sleep Method
Suspends script execution for a specified length of time,
then continues execution.

I want to do this in visual basic. Can anyone tell me how?
 
Thread.Sleep(someInt) 'Where someInt is the number of milliseconds you want
the pause to happen for.
 
Richard C. said:
Windows Script Host
Sleep Method
Suspends script execution for a specified length of time,
then continues execution.

I want to do this in visual basic. Can anyone tell me how?

'System.Threading.Thread.Sleep'.
 
Back
Top