Reply
 
Thread Tools Display Modes
  #1   Report Post  
Posted to microsoft.public.word.docmanagement
David Shepard David Shepard is offline
external usenet poster
 
Posts: 2
Default Reviewing Tool Bar in Word

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
  #2   Report Post  
Posted to microsoft.public.word.docmanagement
Suzanne S. Barnhill Suzanne S. Barnhill is offline
external usenet poster
 
Posts: 33,624
Default Reviewing Tool Bar in Word

See €śReview Toolbar Annoyance€ť
http://pubs.logicalexpressions.com/P...cle.asp?ID=221

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
Word MVP FAQ site: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.

"David Shepard" wrote in message
...
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


  #3   Report Post  
Posted to microsoft.public.word.docmanagement
David Shepard David Shepard is offline
external usenet poster
 
Posts: 2
Default Reviewing Tool Bar in Word

Thanks. I am glad there are really smart people out there.

David

"Suzanne S. Barnhill" wrote:

See €śReview Toolbar Annoyance€ť
http://pubs.logicalexpressions.com/P...cle.asp?ID=221

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
Word MVP FAQ site: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.

"David Shepard" wrote in message
...
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



  #4   Report Post  
Posted to microsoft.public.word.docmanagement
Suzanne S. Barnhill Suzanne S. Barnhill is offline
external usenet poster
 
Posts: 33,624
Default Reviewing Tool Bar in Word

Me, too!

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
Word MVP FAQ site: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.

"David Shepard" wrote in message
news
Thanks. I am glad there are really smart people out there.

David

"Suzanne S. Barnhill" wrote:

See €śReview Toolbar Annoyance€ť
http://pubs.logicalexpressions.com/P...cle.asp?ID=221

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
Word MVP FAQ site: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the

newsgroup so
all may benefit.

"David Shepard" wrote in

message
...
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




  #5   Report Post  
Posted to microsoft.public.word.docmanagement
medic_taz medic_taz is offline
external usenet poster
 
Posts: 2
Default Reviewing Tool Bar in Word

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.

"Suzanne S. Barnhill" wrote:

Me, too!

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
Word MVP FAQ site: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.

"David Shepard" wrote in message
news
Thanks. I am glad there are really smart people out there.

David

"Suzanne S. Barnhill" wrote:

See €śReview Toolbar Annoyance€ť
http://pubs.logicalexpressions.com/P...cle.asp?ID=221

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
Word MVP FAQ site: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the

newsgroup so
all may benefit.

"David Shepard" wrote in

message
...
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






  #6   Report Post  
Posted to microsoft.public.word.docmanagement
Graham Mayor Graham Mayor is offline
external usenet poster
 
Posts: 19,312
Default Reviewing Tool Bar in Word

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
Word MVP web site http://word.mvps.org


medic_taz wrote:
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.

"Suzanne S. Barnhill" wrote:

Me, too!

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
Word MVP FAQ site: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the
newsgroup so all may benefit.

"David Shepard" wrote in
message news
Thanks. I am glad there are really smart people out there.

David

"Suzanne S. Barnhill" wrote:

See "Review Toolbar Annoyance"
http://pubs.logicalexpressions.com/P...cle.asp?ID=221

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
Word MVP FAQ site: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the
newsgroup so all may benefit.

"David Shepard" wrote in
message ...
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



  #7   Report Post  
Posted to microsoft.public.word.docmanagement
medic_taz medic_taz is offline
external usenet poster
 
Posts: 2
Default Reviewing Tool Bar in Word

Thanks.

"Graham Mayor" wrote:

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
Word MVP web site http://word.mvps.org


medic_taz wrote:
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.

"Suzanne S. Barnhill" wrote:

Me, too!

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
Word MVP FAQ site: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the
newsgroup so all may benefit.

"David Shepard" wrote in
message news Thanks. I am glad there are really smart people out there.

David

"Suzanne S. Barnhill" wrote:

See "Review Toolbar Annoyance"
http://pubs.logicalexpressions.com/P...cle.asp?ID=221

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
Word MVP FAQ site: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the
newsgroup so all may benefit.

"David Shepard" wrote in
message ...
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




Reply
Thread Tools
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Reveal codes in a word document FUN101 Microsoft Word Help 4 May 16th 23 08:47 PM
Why dont MS just f**king re-write Word from scratch? Its dogsh*t Word Hater Microsoft Word Help 33 May 5th 23 02:52 PM
Word & WordPerfect MrsMac Microsoft Word Help 5 June 10th 06 03:14 AM
hard space between words. Sandy L Microsoft Word Help 7 May 5th 06 08:25 PM
How can Word display full path of a file in the title bar? SAsif Microsoft Word Help 1 January 26th 06 04:32 PM


All times are GMT +1. The time now is 05:40 AM.

Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 Microsoft Office Word Forum - WordBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Word"