"Dennis" <(E-Mail Removed)> schrieb
> I find myself having to use Application.DoEvents to clear out my
> program events before proceeding to the next line of code,
> especially when working with MCI and using "NOTIFY" callback. Is
> this considered good programming practice? I thought that I had
> read somewhere that using
> Applicaiton.DoEvents was not a good practice.
It is bad practice because it processes all messages in the message queue,
thus the user might even close the form at this point.
Armin
|