L
Lee
I am trying to code my Word Templates so that the SaveAs
Dialog box goes to the correct folder and shows only .rtf
files... So far I have the following code but it does not
show only .rtf files, it only shows .doc files... Arrgghh!!
'Set the initial path to the M:\ drive and Save.
Dim fd As FileDialog
Set fd = Application.FileDialog(msoFileDialogSaveAs)
With fd
.InitialFileName = "M:\usinput\comserv\*.rtf"
.Show
End With
Unfortunately, our electronic filing program uses
only .rtf documents so users need to be prompted to save
as .rtf... Cheers
Dialog box goes to the correct folder and shows only .rtf
files... So far I have the following code but it does not
show only .rtf files, it only shows .doc files... Arrgghh!!
'Set the initial path to the M:\ drive and Save.
Dim fd As FileDialog
Set fd = Application.FileDialog(msoFileDialogSaveAs)
With fd
.InitialFileName = "M:\usinput\comserv\*.rtf"
.Show
End With
Unfortunately, our electronic filing program uses
only .rtf documents so users need to be prompted to save
as .rtf... Cheers