View Single Post
  #2   Report Post  
Posted to microsoft.public.word.docmanagement
Charles Kenyon
 
Posts: n/a
Default How to I lock a template for modification only?

You can't do this unless macros are enabled. The user can always disable
macros.

What I do in some of my Add-Ins (that would never be used to create a new
document) is have an AutoNew macro that opens the template and closes the
new document without saving. You could do an AutoOpen macro that (1) tests
to see if the ActiveDocument is a template or a document, and (2) if a
template, creates a new document based on the template and closes the
template. You could have it first ask for a password and if the password
were typed in, just leave the template open. The password could be hard
coded or could be a document variable. This is not secure, at all, but would
keep someone from accidentally opening and changing your template. You can
also store the template as read-only (at the operating system level, not
using Word's read-only setting).

I would, instead, or in addition, train users to use FileNew to access
templates, or create a templates menu for the standard templates.
http://addbalance.com/word/templatesmenu.htm
--
Charles Kenyon

Word New User FAQ & Web Directory: http://addbalance.com/word

Intermediate User's Guide to Microsoft Word (supplemented version of
Microsoft's Legal Users' Guide) http://addbalance.com/usersguide

See also the MVP FAQ: http://word.mvps.org/FAQs/ which is awesome!
--------- --------- --------- --------- --------- ---------
This message is posted to a newsgroup. Please post replies
and questions to the newsgroup so that others can learn
from my ignorance and your wisdom.


"PegSCK" wrote in message
...
I want to lock the template so that if someone opens it from Word, i.e. it
opens as a .dot document, they would be required to enter a password. But
if
they double-click on the template, it should just open a new document
without
requiring a password.