How to Show Macro is Running

R

roadkill

Is there an easy way (programmatically or otherwise) to show that a macro is
running? The hour glass doesn't always show and simple things, like a
message box, stop the code while there showing. Also, I don't want to kill
the keyboard - just in case something unexpected happens and I need to Break.

I have this same issue in other applications. Most notably MS Project. So
a somewhat universal solution would be nice (I don't want much, do I?).

Thanks,
Will
 
R

roadkill

I don't need anything so elaborate, but you pointed me in the right
direction. In reviewing the code related to the progress bar, I learned
about opening a form modeless (as opposed to modal) so that code continues to
run while the form is displayed. That was all I needed. Thanks!
- Will
 
Top