How to hide the status bar in Office 2007? Slow message sending.

D

Dima

Hello!
How to hide the status bar in Excel 2007 and in Office 2007?
Why does Outlook 2007 send message window appear in 30 seconds after sending
a small file from an Office program or choosing the send command from the
file context menu?
Sincerely,
Dima
 
B

Bob Buckland ?:-\)

Hi Dima,

The control to turn off the status bar through the user interface in the ribboned Office apps has basically been turned off. If you
right click on the status bar you may note that there are quite a few choices of items you can have displayed there.

For the send message window there may be a delay depending on how your antivirus software, for example, works to check items you use
before it actually sends them.

=============
Hello!
How to hide the status bar in Excel 2007 and in Office 2007?
Why does Outlook 2007 send message window appear in 30 seconds after sending
a small file from an Office program or choosing the send command from the
file context menu?
Sincerely,
Dima >>
--

Bob Buckland ?:)
MS Office System Products MVP

*Courtesy is not expensive and can pay big dividends*
 
S

Shane Devenshire

Hi Dima,

The first problem is a known issue. However, you can control this with
code:

Sub ToggleStatusBar()
Application.DisplayStatusBar = Not Application.DisplayStatusBar
End Sub

Assign a shortcut key to this macro and you can toggle the status bar on and
off in 2007 or earlier versions.

Cheers,
Shane Devenshire
Microsoft Excel MVP
 
B

Bob Buckland ?:-\)

Hi Dima,

Note that Shane's macro to hide the status bar appears to work in Excel 2007 but not in Word 2007 :(

===========
Hello!
How to hide the status bar in Excel 2007 and in Office 2007?
Why does Outlook 2007 send message window appear in 30 seconds after sending
a small file from an Office program or choosing the send command from the
file context menu?
Sincerely,
Dima >>
--

Bob Buckland ?:)
MS Office System Products MVP

*Courtesy is not expensive and can pay big dividends*
 
D

Dima

Thanks Bob for your reply!
How to prevent the antivirus (with ...office.. in a name) interference?
Sincerely,
Dima
 
D

Dima

Thanks Shane Devenshire for your code!
Shane Devenshire said:
Hi Dima,

The first problem is a known issue. However, you can control this with
code:

Sub ToggleStatusBar()
Application.DisplayStatusBar = Not Application.DisplayStatusBar
End Sub

Assign a shortcut key to this macro and you can toggle the status bar on
and off in 2007 or earlier versions.

Cheers,
Shane Devenshire
Microsoft Excel MVP
 

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

Top