This is my entire code:
It's one button. All it's suppose to do is load up Tor, The Onion Router. When I click StartTor.exe (I changed the name because I thought that was the problem, but it's not) manually, Vidilia loads and Tor loads and I have no issues. When VB starts StartTor.exe, I get an "Error Starting Tor" message, "Vidilia was unable to start Tor. Check your settings and ensure the correct name and location of your Tor executable is specified." Well it is, and everything seems to be correct. Any suggestions on getting this working?
Code:
Public Class Form1
'THIS IS THE BUTTON!!!
Private Sub btnTHE_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnTHE.Click
Process.Start("C:\Users\Home\Downloads\Tor Browser\StartTor.exe")
End Sub
End Class