Word toolbars Within Internet Explorer

N

Nick

I have a Word document with a custom toolbar. When opening the document
through IE, the Reviewing toolbar is the only one visible. I can manually
make the toolbar visible and remove the Reviewing toolbar. I have tried some
code to make the Reviewing not visible and the other visible but it doesn't
seem to work. I was hoping a simple Macro would do the trick but that doesn't
seem to work either.
 
N

Nick

I got it to work with this simple code


Private Sub Document_Open()

ActiveDocument.CommandBars("Critsit").Visible = True
ActiveDocument.CommandBars("Critsit").Position = 1
ActiveDocument.CommandBars("Reviewing").Visible = False

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