Application.DoEvents

  • Thread starter Thread starter Cool Guy
  • Start date Start date
C

Cool Guy

I assume that a call to Application.DoEvents doesn't return until the
pending messages are processed.

Is this correct?
 
yep!

but the thing is, event keeps being generated!
so, if you want to process all event until the user quit, Application.Run()
is the best choice...
 
Back
Top