Is there a way I can get the "Reviewing" toolbar to always appear.

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

Guest

Everytime someone sends me a document to review, I have to open the Reviewing
toolbar. Is there a way I can set up the toolbars so that it is always there?
 
Put the following macro in your normal.dot.

Sub AutoOpen
CommandBars("Reviewing").Visible = True
End Sub

If you already have an AutoOpen macro, include the statement in it. If you
don't know what to do with this, see
http://word.mvps.org/FAQs/MacrosVBA/CreateAMacro.htm or
http://addbalance.com/word/macrosfromnewsgroup.htm.

BTW, we've had many more requests to get rid of this than to always display
it. Did you know that if you right-click in the toolbar area you'll get a
list of toolbars and you can just pick one?
--

Charles Kenyon

Word New User FAQ & Web Directory: http://addbalance.com/word

Intermediate User's Guide to Microsoft Word (supplemented version of
Microsoft's Legal Users' Guide) http://addbalance.com/usersguide

See also the MVP FAQ: http://www.mvps.org/word which is awesome!
--------- --------- --------- --------- --------- ---------
This message is posted to a newsgroup. Please post replies
and questions to the newsgroup so that others can learn
from my ignorance and your wisdom.
 
Back
Top