M
Mikel
Is there any way using VBA to set the file type to .txt
for the Open Data Source Dialog box. I have been able to
do this with the File Open and File Sava As Dialog boxes
but can't seem to get it to work with the Open Data Source
one Here is my code
Dim OpenDataSourcedlg As Object
Set OpenDataSourcedlg = Dialogs
(wdDialogMailMergeOpenDataSource)
With OpenDataSourcedlg
.Name = "*.TXT"
.Display
.Execute
End With
Thank you in advance, Mikel
for the Open Data Source Dialog box. I have been able to
do this with the File Open and File Sava As Dialog boxes
but can't seem to get it to work with the Open Data Source
one Here is my code
Dim OpenDataSourcedlg As Object
Set OpenDataSourcedlg = Dialogs
(wdDialogMailMergeOpenDataSource)
With OpenDataSourcedlg
.Name = "*.TXT"
.Display
.Execute
End With
Thank you in advance, Mikel