View Single Post
 
Old 05-26-2011, 10:29 PM
macropod's Avatar
macropod macropod is offline Windows 7 32bit Office 2007
Administrator
 
Join Date: Dec 2010
Location: Canberra, Australia
Posts: 21,963
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 MYGS,

That is how Word templates work.

If you add the following code to your template, it will prompt the user to save immediately a new file is created, using the template's name. From then on, the document can be edited & saved as per normal.
Code:
Private Sub Document_New()
With Dialogs(wdDialogFileSaveAs)
  .Name = Split(ThisDocument.AttachedTemplate.Name, ".")(0)
  .Show
End With
End Sub
__________________
Cheers,
Paul Edstein
[Fmr MS MVP - Word]
Reply With Quote