How to reset the Application.StatusBar

  • Thread starter Thread starter PCLIVE
  • Start date Start date
P

PCLIVE

I know this is probably simple, but my brain is having a glitch right now.

How do I reset the Application.StatusBar?

As an example, I have code that states:

Application.StatusBar = "Running"

I know how to make the StatusBar say something else, but how do I reset it
to normal so that it shows the normal things such as "Saving Temporary
File", "Calculating", etc.?

Thanks.
Paul
 
application.statusbar = false

works for me.
I know this is probably simple, but my brain is having a glitch right now.

How do I reset the Application.StatusBar?

As an example, I have code that states:

Application.StatusBar = "Running"

I know how to make the StatusBar say something else, but how do I reset it
to normal so that it shows the normal things such as "Saving Temporary
File", "Calculating", etc.?

Thanks.
Paul
 
You are better off with

Application.Statusbar = False

The line of code you have permanently sets that status bar to blank. The
line of code above returns control of the status bar back to Excel.
 
Thanks Jim.

That's it.


Jim Thomlinson said:
You are better off with

Application.Statusbar = False

The line of code you have permanently sets that status bar to blank. The
line of code above returns control of the status bar back to Excel.
 

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