Office 2010 turn off status bar

burtie

New member
Power User
VIP
Local time
2:43 AM
Messages
291
Hi all,

How do I turn off or hide the status bar in outlook 2010?
I can not find the option anywhere.

Thanks
 

My Computer My Computer

At a glance

Vista/Windows 7
OS
Vista/Windows 7
show hide status bar macro for Microsoft Office Word 2010

Here's a quick Macro i made that any one can use. Create a new macro then paste the following code into it, save it, and then customize your ribbon and add it to your quick access toolbar.

You can now Toggle (show / hide / on / off) the status bar with a simple click of your mouse button! :)

Code:
Sub ShowHideStatusBar()
'
' Show/hide status bar macro
'
' Christian Gould,
' [email protected]

If CommandBars("Status Bar").Visible = False Then
    CommandBars("Status Bar").Visible = True
ElseIf CommandBars("Status Bar").Visible = True Then
    CommandBars("Status Bar").Visible = False
End If

End Sub
Regards, Christian Gould.
 

My Computer My Computer

At a glance

Windows XP
Computer Manufacturer/Model Number
Netbook Asus EEEPC
OS
Windows XP
Wow thanks for the reply... iam on my tablet at the moment but when I get back to my PC ill check it out :-)
 

My Computer My Computer

At a glance

Vista/Windows 7
OS
Vista/Windows 7
You can also very easily control what appears (or does not appear) in the Status Bar:
MVPs for Office and SharePoint 2010: Status Bar Changes in Outlook 2010 - The Microsoft MVP Award Program Blog - Site Home - MSDN Blogs
.
.

If you find the new Status Bar much too cluttered now and want to hide a few items or only want to see Outlook’s connection state, then you can turn off the items by right clicking on the Status Bar. This will reveal a context menu in which you can easily select the information that you want to be displayed.


12.jpg
 

My Computer My Computer

At a glance

Windows 7 Home Premium 64bitIntel(R) Core(TM) i3-2120 CPU @ 3.30GHz3.00 GB(1) Intel(R) HD Graphics (2) VNC Mirror Driver
Computer type
PC/Desktop
Computer Manufacturer/Model Number
Packard Bell
OS
Windows 7 Home Premium 64bit
CPU
Intel(R) Core(TM) i3-2120 CPU @ 3.30GHz
Motherboard
Packard Bell IPISB-AG
Memory
3.00 GB
Graphics Card(s)
(1) Intel(R) HD Graphics (2) VNC Mirror Driver
Sound Card
Realtek High Definition Audio
Monitor(s) Displays
AIO LCD
Screen Resolution
1920 x 1080
Hard Drives
WDC WD10EADX-22TDHB0 ATA Device
Fixed hard disk media
4 partitions
931.51 GB
Keyboard
Wireless
Mouse
Wireless
Antivirus
Microsoft Security Essentials
Browser
IE; Firefox
Other Info
Also:
Samsung N220 Plus Netbook - Windows 7 Home
HP laptop
iPad 5
Back
Top