That's good if you can also deduce (or want to force) the folder to save the
document in. But if you want to "suggest" the proper name and path but still
let the user change it in the Save As dialog, you can do something like this
(see http://word.mvps.org/FAQs/MacrosVBA/ChangeSaveAsPath.htm):
With Dialogs(wdDialogFileSaveAs)
.Name = "C:\My Documents\" & DeducedFilename
.Show
End With

Signature
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://word.mvps.org
> Simplest is just to save the document at that point:
>
[quoted text clipped - 9 lines]
>> Regards
>> Bo Rasmussen
Bo Rasmussen - 08 Dec 2004 08:44 GMT
Thanks,
Finally I implemented a FileSaveAs in a global template. The title is
identical to the deduced filename
Sub FileSaveAs()
With Dialogs(wdDialogFileSaveAs)
.Name = ActiveDocument.BuiltInDocumentProperties("Title")
.Show
End With
End Sub
This seems to work alright :o)
Regards
Bo Rasmussen
> That's good if you can also deduce (or want to force) the folder to save the
> document in. But if you want to "suggest" the proper name and path but still
[quoted text clipped - 19 lines]
> >> Regards
> >> Bo Rasmussen