Word 2007

  • Thread starter Thread starter Guest
  • Start date Start date
Right clicking on the status bar allows you to choose the options you want in
the status bar. Even when you uncheck all of the options you still have a
blank status bar. I want to hide the entire status bar as you can in Word
2003.
 
I suspected that but since I'm new with using Office 2007, I was able to
find this partial solution real quick. I don't know if you can get rid of
the status bar completely. Is that ¼" of real estate so critical?

--

JoAnn Paules
Microsoft MVP - Publisher

How to ask a question
http://support.microsoft.com/kb/555375
 
Word '07 doesn't offer any option for hiding the Status Bar. Perhaps one of
the 3rd party customizing utilities out there include that capability, but I
haven't used any of them.

Regards |:>)
Bob Jones
[MVP] Office:Mac
 
It is so useful that I am surprised that anyone would want to remove it?

--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 
It's surprising what people will discard simply because _they_ see no use
for it... I've gotten some d*mn good buys at yard/garage sales :-)

Regards |:>)
Bob Jones
[MVP] Office:Mac
 
Actually it goes to enabling different working styles. Many of us move the
main toolbar to the left side of the screen from the bottom so we can
perceptually see text only from top to bottom; you can also see both the bar
and all of the text window when both are open simultaneously. The new Office
2007 mail window allows the same kind of very nice collapsing to the left of
the navigation pane. While the info in the Word 2007 status bar is often
irrelevant to many of us, the real problem is that forcing it to be open and
at the bottom requires people to distinguish status info from textual content
when editing. That's why it could be hidden in Word 2003. there is some
classic ergonomic literature on improving work by separating function windows
from content. Hopefully a future version of 2007 will again return user
control over this feature. JoAnn, now that you know that the answer is not
"is that 1/4 inch so important" can you help us get the 2003 feature back?
 
It turns out that you CAN hide the status bar with a macro:

Application.CommandBars("Status Bar").Visible = False

turns it off, and

Application.CommandBars("Status Bar").Visible = True

turns it back on. The following, therefore, acts as a toggle:

Application.CommandBars("Status Bar").Visible = Not
Application.CommandBars("Status Bar").Visible

So, if you create the following macro:

Sub StatusBarToggle()

Application.CommandBars("Status Bar").Visible = Not
Application.CommandBars("Status Bar").Visible

End Sub

....you can put the macro onto the QAT and toggle the status bar on/off any
time you want.

Hope this helps...

--
Herb Tyson MS MVP
Author of the Word 2007 Bible
Blog: http://word2007bible.herbtyson.com
Web: http://www.herbtyson.com
 
Herb,

Thanks a ton. It works supurbly. I used the Visual Basic editor to do the
macro, added it to the toolbar, and the situation is resolved.

Thanks especially for being willing to figure out a solution instead of
deriding the question and the questioner. I appreciate you help very much.
 
Glad to help.

Last week when I saw the question, I tried recording a macro in Word 2003 to
do it, then saw that it didn't work in 2007... so, I figured that it'd been
gutted from Word 2007. Today, I spent some time trying to figure out what
kind of control the status bar was in Word 2007... and eventually hit on the
solution.

Cheers,

--
Herb Tyson MS MVP
Author of the Word 2007 Bible
Blog: http://word2007bible.herbtyson.com
Web: http://www.herbtyson.com
 

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