I'm trying to completely DISABLE user input while loading a new form. This
is to prevent unwanted events when the user clicks more than once on a
control.
I've tried EnableWindow, but it seems to wait until the form is enabled,
and then apply the click that happened 30 seconds ago!
Does anyone know how to prevent this scenario?
Selden
There is 1 Reply.
I tried Form1.Enabled = False, but the same thing happened. apparently,
mouse clicks are queued up, and the queue is read AFTER the form is
re-enabled! Bah!
There is 1 Reply.