02-22-2013, 06:34 AM
Been watching the wonderful Visual Basic tutorials on youtube and they are great.
But ive been follow other tuorials on how to use Process.Start and all of them say just do this.....
That should launch explore into your C drive, but not for me i get the error.....
The only way i can get it to work is by using Diagnostics like so.....
or like this.....
Anyone have a idea what's going on here im stumpt for idea's ?
Thanks <!-- s:oops: --><img src="{SMILIES_PATH}/icon_redface.gif" alt=":oops:" title="Embarrassed" /><!-- s:oops: -->
But ive been follow other tuorials on how to use Process.Start and all of them say just do this.....
Code:
Process.Start("C:\")
That should launch explore into your C drive, but not for me i get the error.....
Code:
'Start' is not a member of 'Process'
The only way i can get it to work is by using Diagnostics like so.....
Code:
Diagnostics.Process.Start("C:\")
Code:
Dim p As New System.Diagnostics.Process
p.StartInfo.FileName = "C:\"
p.Start()
Anyone have a idea what's going on here im stumpt for idea's ?
Thanks <!-- s:oops: --><img src="{SMILIES_PATH}/icon_redface.gif" alt=":oops:" title="Embarrassed" /><!-- s:oops: -->