New Process help

Is it possible to get a user to insert a folder address in a text box click on a button and get the folder to load?

I tried these codes:
-

Dim pr As New Process

pr.StartInfo.FileName = Command.file1

pr.Start()

--

and I also tried:

-

Dim ob1

ob1 = Command.file1

Dim pr As New Process

pr.StartInfo.FileName = ob1

pr.Start()

--

but neither work, can someone give me a bit of help?

[494 byte] By [uk_boy] at [2007-12-16]
# 1
Let me try and understand what you trying to do. You want to enter the path of a specified folder and display the contents of the folder.

If this is correct what control do you want to display the contents of the folder in. (Listbox, Listview, Combobox)

spotty at 2007-9-9 > top of Msdn Tech,Visual Basic,Visual Basic Language...