Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Toolbars in MS Word

Status
Not open for further replies.

rschaaf

Technical User
Jun 2, 2003
15
NL
I am using MS Word 2002 for a few months now, and am annoyed by the toolbars "Web" and "Reviewing" that keep popping up whenever I open a document or follow a hyperlink.

Does anyone know a way to stop this?
 
View->Toolbars, and uncheck those you don't wish to see?
--Paul

It's important in life to always strike a happy medium, so if you see someone with a crystal ball, and a smile on their face ...
 
Maybe I wasn't clear enough...

Of course, disabling these toolbars is what I do all the time. But I am working with many documents every day and disabling the toolbars after opening every new document is annoying.
I know I could empty the toolbars and place them permanently behind the formatting toolbar or wherever where they don't catch the eye, but I'd rather not see them popping up at all.

 
Make an AutoOpen() sub in a module; OR a Document_Open sub in the ThisDocument module, with something like:

(In the ThisDocument module)

Code:
Private Sub Document_Open()
If Application.CommandBars("Reviewing").Visible = True Then
    Application.CommandBars("Reviewing").Visible = False
End If
End Sub

Add as many toolbars that are visble and annoying as you need.

This way, when the document opens, the toolbars, if visible, will become invisible.

Gerry
 
Thank you for your tip, it is quite useful.

However, it works only for the document that contains this code, and since I am working with thousands of documents, I'd rather permanently disable (or even delete) these toolbars.

 
Then put it in as an AutoOpen sub in normal.dot. That will apply to all documents.

Same code, but Sub AutoOpen() in a code module.

Gerry
 
Well, Gerry and Peter,

Combining your tips did the trick. I placed Gerry's AutoOpen Sub in Normal.dot and replaced "Visible" by "Enabled". This appears to be vital.

Thank you very much!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top