F
FileDialogSaveAs - Adding Filters
I've used the folowing code to open a FileDialogSaveAs box, but I cannot set
file extension filters. Any suggestions? Is there another way to set a
default extension?
Dim dlgSaveAs = FileDialog
Set dlgSaveAs = Application.FileDialog(msoFileDialogSaveAs)
dlgSaveAs.Show
.Filter.Clear
.Filter.Add "Comma Separated Value", "*.csv"
file extension filters. Any suggestions? Is there another way to set a
default extension?
Dim dlgSaveAs = FileDialog
Set dlgSaveAs = Application.FileDialog(msoFileDialogSaveAs)
dlgSaveAs.Show
.Filter.Clear
.Filter.Add "Comma Separated Value", "*.csv"