Hi,
this one might help, but only to a very limited extend:
Dim oCmm As CommandBar
For Each oCmm In ActiveDocument.CommandBars
If oCmm.Visible = True Then
oCmm.Protection = msoBarNoChangeDock
oCmm.Protection = msoBarNoChangeVisible
oCmm.Protection = msoBarNoCustomize
oCmm.Protection = msoBarNoMove
' some more
End If
Next
Though it seems, most of them, like
msoBarNoChangeVisible and msoBarNoCustomize are of no use.
I made a script, which copies untouched templates
from a write protected server volume
to the workstations on every login.
In addition, there is a "rescue me" command
in the windows start menu.
But there is no perfect solution, IMHO.

Signature
Greetings from Bavaria, Germany
Helmut Weber, MVP WordVBA
Win XP, Office 2003
"red.sys" & Chr$(64) & "t-online.de"
Tony Jollans - 02 Apr 2006 00:59 GMT
The real answer is training; you wouldn't expect your staff to operate much
else without some basic training, so why Word? The *User* Interface is
inherently *user*-customizable. If you disable customization you will
protect a few ignorant and/or incompetent users from themselves and annoy
your best people which, IMO, is no way to run a business.
That said, in Word 2002 and 2003, there is CommandBars.DisableCustomize.
--
Enjoy,
Tony
> Hi,
>
[quoted text clipped - 30 lines]
> Win XP, Office 2003
> "red.sys" & Chr$(64) & "t-online.de"