![]() |
|
|
|
#1
|
|||
|
|||
|
Doing as much reading as I can as well.
All I do is just open the template, and I see the Saved property in VBA changes to False. It may be better to move the topic over to the Word VBA area, as thay may be the only way to stop the prompts. But I've added the below macro in trying to troubleshoot, and still not working Code:
Sub Test()
'Dim Doc As Document
'For Each Doc In Documents
' MsgBox Doc.AttachedTemplate.Name & vbTab & Doc.AttachedTemplate.Saved
'Next
Dim Tmplt As Template
For Each Tmplt In Templates
MsgBox Tmplt.Name & vbTab & Tmplt.Saved
Next
End Sub
Private Sub Document_Open()
Dim Tmplt As Template
For Each Tmplt In Templates
ActiveDocument.AttachedTemplate.Saved = True
Next
' MsgBox "Greetings"
End Sub
|
|
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Links need to be Hot links in Bibliography in Word 2010, 2013 | synses | Word | 1 | 11-23-2013 12:48 AM |
Automatic update of links in template - closing attached template without saving
|
stefaan | Word | 2 | 11-02-2013 07:46 AM |
| PPT-Template Language Issues | nunezc | PowerPoint | 0 | 04-18-2012 01:18 PM |
| Outlook 2010 Email Template issues | texanaggie | Outlook | 0 | 02-01-2012 05:41 AM |
Word - Links point to template rather than new document
|
mconigol | Word | 1 | 04-01-2011 03:29 PM |