How can we get the contents information that are displayed in a web browser control in vb.net.Suppose if we display the "C:\" or "D:\" of the computer in a web browser and we want to get any folder details but not ny rigth clicking the folder. How to do that plz help

Showing Answers 1 - 1 of 1 Answers

gamesday

  • May 1st, 2007
 

I think you want the openfiledialog, unless your saving, then savefiledialog. Add one to your project.  the simplest usage allowing you to use in any fashion would be

Dim OPEN as New Openfiledialog
open.showdialog()

then when you hit open on the dialog, you can pass that information such as

Dim a as string
a = open.filename()

a will then = D:/Filename.smt, or whatever its real directory is

Ofcourse there more recomended approaches to this method, but that should get you somewhere

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions