What's the best way to pause a process for user input?
Here's my situation:
I open a form with a progress bar that shows images processed. If it gets to an error, the sub needs to stop, activate controls on the form for user input, then continue when the user clicks Continue.
I thought that I would just put the sub into an loop with DoEvents() in it, checking against a boolean for when the user clicks Continue. Is this efficient, or is there a better way?
Thanks!
Drew
Here's my situation:
I open a form with a progress bar that shows images processed. If it gets to an error, the sub needs to stop, activate controls on the form for user input, then continue when the user clicks Continue.
I thought that I would just put the sub into an loop with DoEvents() in it, checking against a boolean for when the user clicks Continue. Is this efficient, or is there a better way?
Thanks!
Drew