Hi,
I want to show the save-as dialog box so the user can choose which folder to
save a document in (at the end of a procedure). I'm using
Application.Dialogs(wdDialogFileSaveAs).Show, but want to change the default
file name to a variable.
I've tried changing
ActiveDocument.BuiltInDocumentProperties(wdPropertyTitle), but that doesn't
seem to make a difference. Does anyone know how to change this?
Thanks Santa
Santa Claus - 06 Oct 2005 07:12 GMT
Hi, answered my own question....
With Dialogs(wdDialogFileSaveAs)
.Name = "I:\4. PFS INTRANET\10. Statement of Advice\" & Newname
.Show
End With
> Hi,
>
[quoted text clipped - 8 lines]
>
> Thanks Santa