+ Reply to Thread
Results 1 to 12 of 12

How to reset the Application.StatusBar

  1. #1
    PCLIVE
    Guest

    How to reset the Application.StatusBar

    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



  2. #2
    mpeplow
    Guest
    Try....

    Application.Statusbar = ""

  3. #3
    PCLIVE
    Guest

    Re: How to reset the Application.StatusBar

    I did that. That causes the StatusBar to remain blank and display nothing.

    "mpeplow" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Try....
    >
    > Application.Statusbar = ""
    >
    >
    > --
    > mpeplow
    > ------------------------------------------------------------------------
    > mpeplow's Profile:
    > http://www.excelforum.com/member.php...o&userid=34812
    > View this thread: http://www.excelforum.com/showthread...hreadid=567080
    >




  4. #4
    Dave Peterson
    Guest

    Re: How to reset the Application.StatusBar

    application.statusbar = false

    works for me.

    PCLIVE wrote:
    >
    > 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


    --

    Dave Peterson

  5. #5
    Jim Thomlinson
    Guest

    Re: How to reset the Application.StatusBar

    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.
    --
    HTH...

    Jim Thomlinson


    "mpeplow" wrote:

    >
    > Try....
    >
    > Application.Statusbar = ""
    >
    >
    > --
    > mpeplow
    > ------------------------------------------------------------------------
    > mpeplow's Profile: http://www.excelforum.com/member.php...o&userid=34812
    > View this thread: http://www.excelforum.com/showthread...hreadid=567080
    >
    >


  6. #6
    PCLIVE
    Guest

    Re: How to reset the Application.StatusBar

    Many thanks Dave.

    That's exactly what I was looking for.

    Paul

    "Dave Peterson" <[email protected]> wrote in message
    news:[email protected]...
    > application.statusbar = false
    >
    > works for me.
    >
    > PCLIVE wrote:
    >>
    >> 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

    >
    > --
    >
    > Dave Peterson




  7. #7
    PCLIVE
    Guest

    Re: How to reset the Application.StatusBar

    Thanks Jim.

    That's it.


    "Jim Thomlinson" <[email protected]> wrote in message
    news:[email protected]...
    > 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.
    > --
    > HTH...
    >
    > Jim Thomlinson
    >
    >
    > "mpeplow" wrote:
    >
    >>
    >> Try....
    >>
    >> Application.Statusbar = ""
    >>
    >>
    >> --
    >> mpeplow
    >> ------------------------------------------------------------------------
    >> mpeplow's Profile:
    >> http://www.excelforum.com/member.php...o&userid=34812
    >> View this thread:
    >> http://www.excelforum.com/showthread...hreadid=567080
    >>
    >>




  8. #8
    Dave Peterson
    Guest

    Re: How to reset the Application.StatusBar

    application.statusbar = false

    works for me.

    PCLIVE wrote:
    >
    > 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


    --

    Dave Peterson

  9. #9
    Jim Thomlinson
    Guest

    Re: How to reset the Application.StatusBar

    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.
    --
    HTH...

    Jim Thomlinson


    "mpeplow" wrote:

    >
    > Try....
    >
    > Application.Statusbar = ""
    >
    >
    > --
    > mpeplow
    > ------------------------------------------------------------------------
    > mpeplow's Profile: http://www.excelforum.com/member.php...o&userid=34812
    > View this thread: http://www.excelforum.com/showthread...hreadid=567080
    >
    >


  10. #10
    PCLIVE
    Guest

    Re: How to reset the Application.StatusBar

    Many thanks Dave.

    That's exactly what I was looking for.

    Paul

    "Dave Peterson" <[email protected]> wrote in message
    news:[email protected]...
    > application.statusbar = false
    >
    > works for me.
    >
    > PCLIVE wrote:
    >>
    >> 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

    >
    > --
    >
    > Dave Peterson




  11. #11
    PCLIVE
    Guest

    Re: How to reset the Application.StatusBar

    Thanks Jim.

    That's it.


    "Jim Thomlinson" <[email protected]> wrote in message
    news:[email protected]...
    > 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.
    > --
    > HTH...
    >
    > Jim Thomlinson
    >
    >
    > "mpeplow" wrote:
    >
    >>
    >> Try....
    >>
    >> Application.Statusbar = ""
    >>
    >>
    >> --
    >> mpeplow
    >> ------------------------------------------------------------------------
    >> mpeplow's Profile:
    >> http://www.excelforum.com/member.php...o&userid=34812
    >> View this thread:
    >> http://www.excelforum.com/showthread...hreadid=567080
    >>
    >>




  12. #12
    mpeplow
    Guest
    try....
    Application.Statusbar = False

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1