permanently hide toolbars

G

Guest

When Word starts, I always get the Standard, Formatting, and PDF Maker
toolbars. I have to eliminate two of them every time. Is there somewhere I
can set this once and have it stay that way until I change it? I mean,
through opening and closing of Word, through reboots and all that.
 
G

Greg

Suska,

I have the following lines of code in AutoOpen and AutoNew Macros to
ensure these irritating toolbars are not displayed:

With CommandBars
.Item("Reviewing").Visible = False
.Item("Mail Merge").Visible = False
.Item("Forms").Visible = False
End With
 

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