Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
Home
DiscussionsAccessExcelInfoPathOutlookPowerPointPublisherWord
DirectoryUser Groups
Related Topics
Outlook ExpressInternet ExplorerWindowsMS Server ProductsMore Topics ...

MS Office Forum / Word / Programming / August 2006

Tip: Looking for answers? Try searching our database.

How can I stop the reviewing toolbar from popping up?

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
Sandi Vogel - 30 Aug 2006 21:01 GMT
I am using another program called iRedline for document comparisons and
changes.  After I compare documents with iRedline, Word's native Reviewing
toolbar pops up.  It is redundant sitting there next to the iRedline toolbar;
and I don't want to confuse my users.
Cindy M. - 31 Aug 2006 12:34 GMT
Hi =?Utf-8?B?U2FuZGkgVm9nZWw=?=,

> I am using another program called iRedline for document comparisons and
> changes.  After I compare documents with iRedline, Word's native Reviewing
> toolbar pops up.  It is redundant sitting there next to the iRedline toolbar;
> and I don't want to confuse my users.

Contact the folks that created iRedline and ask them if they can incorporate
this into their product (perhaps as an option).

Cindy Meister
INTER-Solutions, Switzerland
http://homepage.swissonline.ch/cindymeister (last update Jun 17 2005)
http://www.word.mvps.org

This reply is posted in the Newsgroup; please post any follow question or reply
in the newsgroup and not by e-mail :-)
Ed - 31 Aug 2006 15:15 GMT
Hi, Sandi.  I have the following in my Normal.dot ThisDocument object:

Sub AutoOpen()
  With Application.CommandBars("Web")
     .Enabled = False
     .Visible = False
  End With
 With Application.CommandBars("Reviewing")
   .Enabled = False
   .Visible = False
 End With
 Application.OnTime _
 When:=Now + TimeValue("00:00:02"), _
 Name:="RemoveBar", Tolerance:=3
End Sub

Sub RemoveBar()
 With Application.CommandBars("Reviewing")
   .Enabled = False
   .Visible = False
 End With
 With Application.CommandBars("Web")
   .Enabled = False
   .Visible = False
 End With
End Sub

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

Hopefully, this should take care of things on your own computer.

Ed

>I am using another program called iRedline for document comparisons and
> changes.  After I compare documents with iRedline, Word's native Reviewing
> toolbar pops up.  It is redundant sitting there next to the iRedline
> toolbar;
> and I don't want to confuse my users.
Sandi Vogel - 31 Aug 2006 15:30 GMT
Bless you!  Thanks so much!

> Hi, Sandi.  I have the following in my Normal.dot ThisDocument object:
>
[quoted text clipped - 39 lines]
> > toolbar;
> > and I don't want to confuse my users.

Rate this thread:






 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.