Hi Rick:
There are two toolbars that really give me the irrits: that's one, the other
is the Web toolbar. Both waste screen real-estate and won't go away
I use the following macro:
Sub ToggleToolbars()
If CommandBars("Web").Enabled = True Or _
CommandBars("Reviewing").Enabled = True Then
CommandBars("Web").Enabled = False
CommandBars("Reviewing").Enabled = False
Else
CommandBars("Web").Enabled = True
CommandBars("Reviewing").Enabled = True
CommandBars("Web").Visible = True
CommandBars("Reviewing").Visible = True
End If
End Sub
If either useless toolbar is enabled, it disables both. If both of them are
disabled, the macro will enable both and reveal both.
Note: The "Enabled" method is a "cure-all", if it is false, the toolbar
CANNOT be revealed except by running the macro. So you will never see the
Reviewing toolbar or the Web toolbar again -- unless you ask for them.
If the bars are not visible the first time you run the macro, it will appear
to do nothing. But you will note that the toolbars have been removed from
the View>Toolbars list. Run it again, and they will be back in the list and
appear on your screen.
Hope this helps
Periodically, I open a document and the "Reviewing" toolbar appears at the
top of the screen. It then remains there for any other docs I open or
start. I have not identified a pattern as to when this happens. Seems
random. Any suggestion for keeping this down? Thx.
--
Please reply to the newsgroup to maintain the thread. Please do not email
me unless I ask you to.
John McGhie <
[email protected]>
Microsoft MVP, Word and Word for Macintosh. Consultant Technical Writer
Sydney, Australia +61 (0) 4 1209 1410