Does anybody out there know of an API function that causes a process (and it's thread) to suspend for a specified period of time?
I'm sure I've read about it somewhere, but I can't seem to find it again.
Cheers
Printable View
Does anybody out there know of an API function that causes a process (and it's thread) to suspend for a specified period of time?
I'm sure I've read about it somewhere, but I can't seem to find it again.
Cheers
Best regardsVB Code:
Private Declare Sub Sleep _ Lib "kernel32" ( _ ByVal dwMilliseconds As Long)
Cheers