How to keep Reviewing toolbar from appearing?

G

Guest

Once the Reviewing toolbar is used for one document it appears for all new or
opened Word documents. I don't want to see it unless I choose to.
 
G

Guest

Go to MSWord toolbar: click View
From drop down list: click Toolbars
From list unclick Reveiwing
Close
 
G

Graham Mayor

It can be a bit reluctant to depart in Word, especially Word 2003. Auto
macros will keep it under control eg

Sub AutoNew()
CommandBars("Reviewing").Visible = False
End Sub

Sub AutoExec()
CommandBars("Reviewing").Visible = False
End Sub

http://www.gmayor.com/installing_macro.htm

--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 

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