Folder browse

P

Pavel Romashkin

Take a look at the FileDialog object. FileDialog is available via
Appilcation in your VBA code:

Dim fd as FileDialog
Set fd = Application.FileDialog(msoFileDialogFilePicker)
fd.show

etc.
Cheers,
Pavel
 
Top