Hi there,
I am trying to pause the execution of my program for some milliseconds but I don't find a command for that (like Sleep(xx ms) in Visual C++). Can someone help me?
Printable View
Hi there,
I am trying to pause the execution of my program for some milliseconds but I don't find a command for that (like Sleep(xx ms) in Visual C++). Can someone help me?
Try this API :
Declare Sub Sleep Lib "kernel32" Alias "Sleep" (ByVal dwMilliseconds As Long)