Am i able to lock the Word toolbar? The students keep moving it.

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

Guest

Our students keep moving & changing the toolbar in Word. Is there any way to
lock it?
 
Replace the version of normal.dot that your students have changed to your
own default one - maybe by a log-in script.

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

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 
Cougar said:
Our students keep moving & changing the toolbar in Word.
Is there any way to lock it?


Hi Cougar,

Which toolbar? You can do it with a macro:
CommandBars("Menu Bar").Protection=msoBarNoMove+msoBarNoCustomize
CommandBars("Standard").Protection=msoBarNoMove+msoBarNoCustomize
CommandBars("Formatting").Protection=msoBarNoMove+msoBarNoCustomize

The help on the Protection property lists the other types of protection you could apply... adding the constants.
Say, msoBarNoChangeVisible to prevent hiding a toolbar.

If you want to teach how to customize Word, you'd need to remove the protection, though :-)

Greetings,
Klaus
 

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