V
Vince
Hi all,
When my macro is running, I'ld like to show a wait message (a custom form)
to the user and unload it after the macro's done.
For instance:
MyWaitMessageForm.show '1
call ComplexMacro '2
Unload MyWaitMessageForm '3
The problem with this is that VBA waits for me to close the form before
moving on to step 2. So, the complexmacro only starts loading after the Wait
message has been closed! I do not want to call (2) in the WaitMessageForm.
It would be ideal if VBA runs the Form in the background and proceeds to the
next statement. Any way of making this happen?
Thanks,
Vince
When my macro is running, I'ld like to show a wait message (a custom form)
to the user and unload it after the macro's done.
For instance:
MyWaitMessageForm.show '1
call ComplexMacro '2
Unload MyWaitMessageForm '3
The problem with this is that VBA waits for me to close the form before
moving on to step 2. So, the complexmacro only starts loading after the Wait
message has been closed! I do not want to call (2) in the WaitMessageForm.
It would be ideal if VBA runs the Form in the background and proceeds to the
next statement. Any way of making this happen?
Thanks,
Vince