I’ve created a template document with FILLIN fields to prompt the user for info when creating a new doc. In options I have set on the Print tab – Update Fields checked (so that date and document name/path/ID are updated). The problem is that then the FILLIN fields prompt the user to answer the same questions again, or click cancel or something over and over.
I’ve read the KB post (211597) and have added code in autonew to lock the fillin fields. Microsoft tells you to lock the fields by pressing CTRL F11… what does this do? Then, they tell you to add this code in autonew. (All of this seems to be addressing some problem that I don’t even have.) I added the third line, and it works well, except now the date and doc ID fields won’t update.
Sub AutoNew()
ActiveDocument.Fields.Locked = False
ActiveDocument.Fields.Update
ActiveDocument.Fields.Locked = True
Is there anyway to lock specific fields in the document while leaving date and other document property fields unlocked?
Thanks!