View Single Post
 
Old 09-29-2015, 05:12 AM
Lectrician Lectrician is offline Windows 7 64bit Office 2007
Novice
 
Join Date: Feb 2013
Posts: 19
Lectrician is on a distinguished road
Default

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?
Reply With Quote