processing message

  • Thread starter Thread starter hans
  • Start date Start date
H

hans

I have a macro that takes quite a long to run and I would
like to show some kind of message during processing,
like "Please wait - data being processed". What is the
best way to do this?

Hans
 
try

application.statusbar="your message here"
code
appliation.statusbar=""
 
If you used MsgBox to show your message, the macro will halt and wait for user interaction. You can show a form with a progres bar-- overkill, I think

I would show the message on the application.status bar (help file) and turn the mouse pointer to an hourglass.
 
thanks

-----Original Message-----
try

application.statusbar="your message here"
code
appliation.statusbar=""

--
Don Guillett
SalesAid Software
(e-mail address removed)



.
 

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

Back
Top