See
also object creation information - ClassID/ProgID
Overview | Reference
Overview
Sleeper object. This object provides a simple way
to stop the current thread for some time and allow other threads or
system operations to complete. Usually its usage is combined with some
state checks after the Sleep completes. If the conditions are met the
thread proceeds further if not it may enter another Sleep cycle and
try again later.
Reference
|
Sleep |
Syntax:
object.Sleep(ms)
Sleeps/stops the current thread for the specified amount of
time.
ms - the time to sleep in milliseconds (long integer).
|
... |