Article ID: 158175 - Last Review: July 1, 2004 - Revision: 4.1 How To Determine the Differences Between DoEvents and SleepThis article was previously published under Q158175 SUMMARY
This article explains the differences between the Visual Basic DoEvents
MORE INFORMATION
DoEvents is a Visual Basic function that yields execution so the operating
system can process other events. This function cleans out the message loop
and executes any other pending business in the Visual Basic runtime. Upon
completing the pending business execution, the function calls the Sleep
function with zero (0) as the argument so that the remaining time slice can
be used to check the queue.
The Sleep 32-bit API function is a subset of the DoEvents function. The Visual Basic program calling the function and the Visual Basic runtime executable and interactions with Windows are immediately put to sleep by this function. The programs remain inactive for the time in milliseconds specified in the Sleep argument. The Sleep function allows you to specify the amount of time your applications are inactive. The DoEvents function returns control to the Visual Basic program after the operating system has finished processing the events in its queue and all keys in the SendKeys queue have been sent. APPLIES TO
| Article Translations
|
Back to the top
