: How do I invoke the windows "Open File" dialog box using VBA?
:
: Thanks
: Bruce Smith
:
If I understood your question right, you can use under Excel...
strResult = Application.GetOpenFilename(FileFilter,
FilterIndex,Title,ButtonText,MultiSelect)
All params are optional. You may look at your helpfile
for explanation of these params.
Semper!