Select file after GetOpenFilename

  • Thread starter Thread starter RB Smissaert
  • Start date Start date
R

RB Smissaert

How do I select a specified file (as if clicked by the mouse) after opening
the file Open dialog with GetOpenFilename?
I don't want to use the specified file name as a filter, because I want to
show all the files in the folder.
Thanks for any assistance.

RBS
 
This is the best I can do so far:

SendKeys strFile, False

varDialogResult = _
Application.GetOpenFilename(Title:="Press TAB to filter out the file: "
& strFile)


RBS
 
Back
Top