I want to list *.CSV and *.XLS files in a drop down menu using
dlgFileToImport .Filter = "CSV Files (*.csv)| *.csv"
dlgFileToImport .Filter = "Excel Files (*.xls)| *.xls"
dlgFileToImport .DefaultExt = ".csv"
Please what is the syntax for ORing these two requirements.
Many thanks - SB
dlgFileToImport .Filter = "CSV Files (*.csv)| *.csv"
dlgFileToImport .Filter = "Excel Files (*.xls)| *.xls"
dlgFileToImport .DefaultExt = ".csv"
Please what is the syntax for ORing these two requirements.
Many thanks - SB
Comment