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?

