Reviewing toolbar

C

confused

Hello,
after using the Reviewing toolbar, closing and saving my
docuement, when i reopen the same document the toolbar no
longer exists. i then need to manually bring it up. is
there a way to just let it come up with everything without
manually opening it.

thx in advance
 
G

Guest

Hi, confused. You can add AutoOpen and AutoNew macros to your normal.dot template to automatically turn on the Reviewing toolbar:

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

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

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