Posted By:
Christopher_Schultz
Posted On:
Tuesday, February 12, 2002 05:41 AM
If you don't thread your event handler (the one for the button), the user will be completely unable to click on anything during processing of the first click.
If you are extra paranoid, you can set a flag in your event handler that says "the user already clicked something", and then, when in the event handler, ignore all events after that flag is set to 'true'.
-chris