Word 2001 Customize Toolbars

M

Mike Durney

I want to remove the far-right icon on the Ribbon in Word 2001 for
Mac. This icon allows users to reset and customize the toolbar. For
my high school lab setting, I want to prevent any changes to the
toolbars as customized.
 
J

JE McGimpsey

I want to remove the far-right icon on the Ribbon in Word 2001 for
Mac. This icon allows users to reset and customize the toolbar. For
my high school lab setting, I want to prevent any changes to the
toolbars as customized.

One way would be to run this macro:

Public Sub ProtectStandardToolbar()
Application.CommandBars("Standard").Protection = msoBarNoCustomize
End Sub

Close XL to save the setting in the

System Folder:preferences:Microsoft:Excel Toolbars (9)

file. If you have a startup addin, I'd call that macro from the add-in's
Workbook_Open() event.
 
J

JE McGimpsey

JE McGimpsey said:
One way would be to run this macro:

Public Sub ProtectStandardToolbar()
Application.CommandBars("Standard").Protection = msoBarNoCustomize
End Sub

Close XL to save the setting in the

System Folder:preferences:Microsoft:Excel Toolbars (9)

file. If you have a startup addin, I'd call that macro from the add-in's
Workbook_Open() event.

Whoops - shouldn't open a message, go back to work, then come back to
the message - I forget which newsgroup I'm in.


The solution is the same, but you should close WORD so that the setting
is saved in the *Normal template*.

If you have an add-in, call the macro from the AutoExec macro
 

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