Reviewing Tool Bar in Word

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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
 
Me, too!

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA

Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.
 
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.
 
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

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

Back
Top