Quote:
Originally Posted by Lectrician
Code:
Sub AttachNormalNoStyles()
'
' Attach Normal Template without updating Styles
' written by Charles Kenyon 2015-09-27
' https://www.msofficeforums.com/word/28024-word-2007-template-missing-share.html
'
With ActiveDocument
.UpdateStylesOnOpen = False
.AttachedTemplate = Application."\\server\share\template.dot"
End With
End Sub
Sorry - So would this be correct?
Ant I would put this macro into the template itself?
|
The expression "Application.NormalTemplate.FullName" returns a string.
Try:
Code:
.AttachedTemplate = "\\server\share\template.dot"
Put it in which template?
I would put it in a
Global Template with either a QAT button and/or a keyboard shortcut to trigger it.