Getting rid of toolbar

  • Thread starter Thread starter George M. Lutz
  • Start date Start date
G

George M. Lutz

I'd like to put some code into an AutoOpen macro that gets rid of the
reviewing toolbar, if it exists, in any newly opened document.

I have Word 2002. Thank you for your help.

George Lutz
 
The visible property of a toolbar is a property of Word, not of
individual documents. (At least this is so in Word 97.) Therefore
putting any code in an AutoOpen macro is not necessary. You simply need
to turn off the toolbar, and then it won't appear in any newly created
document.

CommandBars("Reviewing").Visible = False

Alternatively, you could make it a toggle:

CommandBars("Reviewing").Visible = Not
(CommandBars("Reviewing").Visible)

Larry
 
Back
Top