Thread: Select file.
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Bob Phillips[_6_] Bob Phillips[_6_] is offline
external usenet poster
 
Posts: 11,272
Default Select file.

Take a look at GetOpenFilename in VBA help.

--

HTH

RP
(remove nothere from the email address if mailing direct)


"Tom" wrote in message
...
Hello,

I need some rutine for: Let the user browse through a folder view to

select
a file.
some procedure which I can call and it give me path and name.

path = GetFile("Select file")

Procedure GetFile()

....

end


Thanks Tom.