View Single Post
 
Old 01-13-2012, 03:51 PM
macropod's Avatar
macropod macropod is offline Windows 7 64bit Office 2010 32bit
Administrator
 
Join Date: Dec 2010
Location: Canberra, Australia
Posts: 22,371
macropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond repute
Default

Hi Kerry,

Provided someone has permission to store the files there, that someone shouldn't need to be you - simply send them the updates when required.

A 'Document_New' macro for the template, to update & unlink the INCLUDETEXT & INCLUDEPICTURE fields in any newly-created documents would look like:
Code:
Private Sub Document_New()
With ActiveDocument.Sections.First.Headers(wdHeaderFooterPrimary).Range.Fields
  .Update
  .Unlink
End With
End Sub
__________________
Cheers,
Paul Edstein
[Fmr MS MVP - Word]
Reply With Quote