Open file dialog for multiple file selection in Access VBA

Access9001

Registered User.
Local time
Today, 09:54
Joined
Feb 18, 2010
Messages
268
How would this be done? I have a getopenfile() function but it only lets me select one file. I've looked into trying to incorporate "getopenfilename()" with a multiselect flag but unsuccessfully. Does anyone have a simple way to solve this problem?
 
You use the AllowMultiSelect property to allow multiple selections:

Code:
fDlog.AllowMultiSelect = True

Then iterate through the SelectedItems() collection to get each selected file string.
 

Users who are viewing this thread

Back
Top Bottom