Getting rid of toolbar

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
 
L

Larry

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
 

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