Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Pausing macro

Status
Not open for further replies.

tjohnsb

Programmer
Sep 9, 1999
14
US
I have a need to pause a macro for a minute and resume execution after the minute has passed. Are there any macro commands that can be used to do this? Can this be accomplished using the timer interval property. If so how?
 
you can pause a macro by adding an action to open a form in "Dialog" mode, and set the Form's TimerInterval to 60000 (1 minute) and use the Form's OnTimer Event to close the form.
You might want to add a label on the form to inform the user of the pause in processing.

PaulF
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top