"Processing" Pop up box

T

Tha BeatMaker

I have a macro that takes a couple of seconds to complete and since I
have the screen update turned off, I want a pop up box that will say
something like "Processing your information" with periods that "move".
The moving period concept will look like this:

this.
this..
this...
this....

Of course I don't want it to type "This" four times; I'm just showing
you how the periods should move.
 
R

Ron Coderre

Would you consider using the status bar?

During processing:
Application.StatusBar = "Processing...."

Then, when done:
Application.StatusBar = FALSE

Regards,
Ron
 
D

Dave Peterson

I use the statusbar at the bottom of excel's window to give the user the status.

Application.statusbar = "Processing this"
'do this
application.statusbar = "Processing that"
'do that
application.statusbar = false 'reset it when you're done.
 

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