Open multiple file types in a VB.NET openFileDialogBox -
I used the openFileDialogBox filter method to allow multiple file types to be opened, but the user chooses this What kind of file dropdown they want to use can appear only with the matching extension of the selected file type.
How can I show all files with extensions that match all my files? I do not want all files to be visible / open, only those people I have employed.
Just specify what you want to allow ... just an example ...
dim dlg As new OpenFileDialog () 'filter files by dlg.filter =' Office files; * .doc; * .xls; * .ppt "dlg.ShowDialog ()
Comments
Post a Comment