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
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