Reviewing Tool Bar in Word

D

David Shepard

When I open Word (2000) The Reviewing Tool bar is frequently present. I do
not want it. I delete it. But it will show up again. It is driving me nuts.
How can I fix it so it stays not selected?
Thanks
 
M

medic_taz

My problem is the opposite. I cannot get the reviewing toolbar to keep coming
up when I start Word 2000. Any Ideas? I've tried doing the reverse of the
articles mentioned but no luck.
 
G

Graham Mayor

The article suggests the use of an autoexec macro to control the toolbar on
starting Word - to make sure it always appears you need to go a step further
with autonew and autoopen macros to ensure it is forced on for each
document.

Sub AutoExec()
With CommandBars("Reviewing")
.Enabled = True
.Visible = True
End With
End Sub

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

Sub AutoOpen()
CommandBars("Reviewing").Visible = True
End Sub

(If you already have auto macros of these names, add the command line to
them.)


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


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

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