How do I keep toolbars from opening automatically?

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

Guest

How do I keep toolbars from opening automatically? Most of the time I don't
want them and they just clutter up the screen.
 
Read in conjunction with the second link I posted earlier, the following
macros in normal.dot should fix it.

Sub AutoNew()
CommandBars("Reviewing").Visible = False
CommandBars("Drawing").Visible = False
CommandBars("Forms").Visible = False
CommandBars("Mail Merge").Visible = False
End Sub

Sub AutoExec()
CommandBars("Reviewing").Visible = False
CommandBars("Drawing").Visible = False
CommandBars("Forms").Visible = False
CommandBars("Mail Merge").Visible = False
End Sub

I am not sure which bar you are referring to as the 'text box' toolbar.

--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 

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

Back
Top