C
Carolyn Speakman
Is there any way to get a SaveAs dialog in VBA for Word 2000 and above? I was using
With Application.FileDialog(msoFileDialogSaveAs)
.InitialFileName = filesavename
.Title = "Save As"
fileSaveFlag = .Show
.Execute
End With
But it only works for Word 2003. Also as above, I'd like to specify the filename.
Any help would be great,
Carolyn
With Application.FileDialog(msoFileDialogSaveAs)
.InitialFileName = filesavename
.Title = "Save As"
fileSaveFlag = .Show
.Execute
End With
But it only works for Word 2003. Also as above, I'd like to specify the filename.
Any help would be great,
Carolyn