Is Macro Running

D

DDBeards

how do tell in code when a macro is done running, or that the macro is running?

Thanks

Chris
 
S

Steve Schapel

Chris,

You could insert MsgBox actions within the macro, which would indicate
the progress of the macro's execution. Or you could put an OpenForm
action at the beginning of the macro, to pop up a little indicator form,
and a CLose action at the end to close that form, which would indicate
that the macro had finished. Or you couls have a Label on a form that
is open when the macro is running, and use SetValue actions throughout
the macro to change the Caption property of the label to indicate what
stage the macro has reached.

Just a few possible ideas...
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top