my message in Status bar

  • Thread starter Thread starter Anita
  • Start date Start date
A

Anita

hello,
please tell, whether it possible - to post my own message
to the Status Bar.

Thank you very much,
Anita
 
Hi Anita,

To add:

Application.StatusBar="My Message"

To remove:

Application.StatusBar=""
 
Anita, use

Application.Statusbar =False

to erase the statusbar message. Setting ="" just puts a null value in the
status bar, which prevents system status messages from appearing.

Robert Flanagan
Macro Systems
Delaware, U.S. 302-234-9857
http://www.add-ins.com
Productivity add-ins and downloadable books on VB macros for Excel
 
Hi Bob
Anita, use
Application.Statusbar =False

to erase the statusbar message. Setting ="" just puts a null value in the
status bar, which prevents system status messages from appearing.

This is not my experience.

From Intermediate window:

Application.StatusBar="My Message"
?Application.StatusBar
My Message

Application.StatusBar=""
?Application.StatusBar
False
 

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