Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.word.docmanagement
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.word.docmanagement
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.word.docmanagement
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.word.docmanagement
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.word.docmanagement
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.word.docmanagement
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.word.docmanagement
|
|||
|
|||
![]()
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 ![]() 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 | |
|
|
![]() |
||||
Thread | Forum | |||
Reveal codes in a word document | Microsoft Word Help | |||
Why dont MS just f**king re-write Word from scratch? Its dogsh*t | Microsoft Word Help | |||
Word & WordPerfect | Microsoft Word Help | |||
hard space between words. | Microsoft Word Help | |||
How can Word display full path of a file in the title bar? | Microsoft Word Help |