The following snippet displays a FileOpen Dialog box with a filter set to RTF.
Set mydlg = Dialogs(wdDialogFileOpen) mydlg.Name = "*.rtf" If mydlg.Show 0 Then 'Do Stuff End If
However, it doen’t change the selection at the bottom of the dialog for “Files of Type.”
Wondering if there is a way to change the Files of Type setting — to show only Word Documents or Only RTF files.
Thanks