Hiding macros

C

Crispy

I have created a simple invoicing workbook that contains
a lot of macros. I would like to have the macros run in
the background while showing on the the main page an "In
progress" message which changes when complete to allow
the next invoice to be added.
Grateful for any help
Crispy
 
J

John Wilson

Crispy,

One way to do this would be to create a UserForm with
whatever message that you want displayed.
In the UserForm Activate Event, call your macros.

e.g.

Private Sub UserForm_Activate()
DoEvents
' Call your sub(s) here
Unload UserForm1
End Sub

John
 
C

Crispy

Thank You
-----Original Message-----
Crispy,

One way to do this would be to create a UserForm with
whatever message that you want displayed.
In the UserForm Activate Event, call your macros.

e.g.

Private Sub UserForm_Activate()
DoEvents
' Call your sub(s) here
Unload UserForm1
End Sub

John




.
 

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