Working with "File Selection" in VB Express

I'm having trouble finding and understanding the proper way to work with selecting files/directories in VB Express. How would I create a string that represents the filenames and/or directory names that are selected from a "WebBrowser" control. (For instance - Viewing a web page (or in this case a local directory), selecting one or more particular files/directories, and having those filenames/directory names display in a Textbox?

Any help would be appreciated...
John

[477 byte] By [JSteuerIII] at [2008-2-14]
# 1
John -

Have you looked at the FileOpenDialog component? It is designed for selecting files, and you can use the FileName or FileNames properties to get the filenames and pass them to your textbox.

Hope this helps,
the V-Bee

shoagMSFT at 2007-8-21 > top of Msdn Tech,Visual Basic,Visual Basic General...
# 2
I just want to comment that its actually called the OpenFileDialog and SaveFileDialog.
DavidM.Kean at 2007-8-21 > top of Msdn Tech,Visual Basic,Visual Basic General...