Toolbar Reviewing

A

Anthony

I'm using Word 2002 (actually office 2002 Professional) and this happens on
the other applications.

I do not want the Reviewing Toolbar to show up each time I open Word, so I
uncheck it. About 50% of the time when I open Word, either directly or
opening a document, the Reviewing Toolbar keeps popping up. I do not want
that to happen. Is there a setting somewhere to prevent the Reviewing
toolbar from showing up when opening Word???

Thanks,

Anthony (Running Windows XP Pro)
 
T

TF

You'll need to run macro to stop the Reviewing Toolbar from Hell appearing:

Sub ReviewDisable()
System.Cursor = wdCursorIBeam
If MsgBox("Click Yes to disable Reviewing toolbar." & vbCr & _
"Click No to re-enable.", vbYesNo, "Disable Reviewing
toolbar") = vbYes Then
CommandBars("Reviewing").Enabled = False
Else
CommandBars("Reviewing").Enabled = True
End If
End Sub


--
Terry Farrell - Word MVP
http://word.mvps.org/

: I'm using Word 2002 (actually office 2002 Professional) and this happens
on
: the other applications.
:
: I do not want the Reviewing Toolbar to show up each time I open Word, so I
: uncheck it. About 50% of the time when I open Word, either directly or
: opening a document, the Reviewing Toolbar keeps popping up. I do not want
: that to happen. Is there a setting somewhere to prevent the Reviewing
: toolbar from showing up when opening Word???
:
: Thanks,
:
: Anthony (Running Windows XP Pro)
:
:
 
B

Beth Melton

Hi Anthony,

As Terry pointed out the only way to control the Reviewing toolbar is
to use a macro. For Word 2002/2003 you will need to either run the
macro each time Word starts or name the macro AutoExec so the macro
will automatically run each time you start Word.

Unfortunately Word will no longer retain toolbar protection on some
toolbars and it is reset each time Word starts.

If you want to know more about *why* the Reviewing toolbar surfaces
when you open a document and other times it doesn't then take a look
at this article:

"Review Toolbar Annoyance"
http://pubs.logicalexpressions.com/Pub0009/LPMArticle.asp?ID=221

--
Please post all follow-up questions to the newsgroup. Requests for
assistance by email can not be acknowledged.

~~~~~~~~~~~~~~~
Beth Melton
Microsoft Office MVP

Word FAQ: http://mvps.org/word
TechTrax eZine: http://mousetrax.com/techtrax/
MVP FAQ site: http://mvps.org/
 
A

Anthony

Thank You,
Anthony

Beth Melton said:
Hi Anthony,

As Terry pointed out the only way to control the Reviewing toolbar is
to use a macro. For Word 2002/2003 you will need to either run the
macro each time Word starts or name the macro AutoExec so the macro
will automatically run each time you start Word.

Unfortunately Word will no longer retain toolbar protection on some
toolbars and it is reset each time Word starts.

If you want to know more about *why* the Reviewing toolbar surfaces
when you open a document and other times it doesn't then take a look
at this article:

"Review Toolbar Annoyance"
http://pubs.logicalexpressions.com/Pub0009/LPMArticle.asp?ID=221

--
Please post all follow-up questions to the newsgroup. Requests for
assistance by email can not be acknowledged.

~~~~~~~~~~~~~~~
Beth Melton
Microsoft Office MVP

Word FAQ: http://mvps.org/word
TechTrax eZine: http://mousetrax.com/techtrax/
MVP FAQ site: http://mvps.org/
 
C

Clark Murray

Thanks from myself as well. I created an AutoExec macro from the article to
get rid of both the Reviewing and the Web toolbar at startup.
 

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