Can I create a template with features that cannot be modified?

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

Guest

I would like to provide a Microsoft Word template for others in my office to
use but it is important that the information in the header and footer are not
modified by other users. Is there any way to "freeze" certain features
within a template (header/footer, text box) so that they cannot be changed or
deleted?
 
You can protect the header and footer, but often just putting stuff in the
header and footer (since they're a different layer) is protection enough.
See whichever of these articles is appropriate:

How can I prevent users from editing the header of a document in Word 2000
or higher?
http://word.mvps.org/faqs/customization/ProtectWord2000PlusHeader.htm

How can I prevent users from editing the header of a Word 97 document?
http://word.mvps.org/FAQs/Customization/ProtectWord97Header.htm


--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA

Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.
 
Hello :)
i really loved the code i have read and it work really nice :)
yet, one thing is happening to me... i need to send this document as a
template to my colleagues at work, yet when opennig the file; the security
dialog box pops for enabling or disabling the macros, while that doesnt
happen once i save it in the template folder.

i wrote the following code when openning to set the security to low; but
nothing happens, it ask me.

can be done? can i auto enable the security and not being asked!!!!

Thanks
 
sorry... i forgot to wrtite you the code

Sub Macro_enable()
'
' Macro_enable Macro
' Macro recorded 3/21/2007 by Effat El-Shiyyab
'
With ActiveDocument
.ReadOnlyRecommended = False
.Password = ""
.WritePassword = ""
.RemovePersonalInformation = False
.RemoveDateAndTime = False
End With
With Options
.WarnBeforeSavingPrintingSendingMarkup = False
.StoreRSIDOnSave = True
.ShowMarkupOpenSave = True
End With
End Sub
 

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