Hi
I have a problem with the Save As Dialog in Word.
Can i change the file-type-list in the Save As dialog?
How can i change the file-type-list?
Thanks a lot
Scand
Printable View
Hi
I have a problem with the Save As Dialog in Word.
Can i change the file-type-list in the Save As dialog?
How can i change the file-type-list?
Thanks a lot
Scand
It can be done by changing the Filter property of the CommonDialog control.
The code will show the files with extension ".txt"Code:Dim strFileName As String
With CommonDialog1
.Filter = "All Text files (*.txt)|*.txt"
.ShowSave
strFileName = .FileName
'Do the saving here
End With
Thank you very much for your answer, but i can't use the commondialog.
I have to modify the wdDialogFileSaveAs standard dialog.
Do you now how i can do this?
I have to do this without the commondialog. that's my problem. I think i can't change the file-type-list in the standard dialog.
Thank anyway
Scand