>Hi,
>
[quoted text clipped - 6 lines]
>Cheers,
>Al
It isn't possible to change it without opening the document first.
Once it is open, assign the AttachedTemplate property:
ActiveDocument.AttachedTemplate = "C:\Templates\Letter.dot"
--
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the newsgroup so all may benefit.
Tony Jollans - 24 Feb 2008 07:40 GMT
But note that if just the path is changing and the new template name is the
same as the old name, this won't work, and you will need to do it a
different way:
With Application.Dialogs(wdDialogToolsTemplates)
.Template = "C:\Templates\Letter.dot"
.Execute
End With

Signature
Enjoy,
Tony
>>Hi,
>>
[quoted text clipped - 19 lines]
> Email cannot be acknowledged; please post all follow-ups to the newsgroup
> so all may benefit.