File not found error on Process.start

  • Thread starter Thread starter Jerry Spence1
  • Start date Start date
J

Jerry Spence1

I am trying to launch a web page as follows:

Dim psInfo As New
System.Diagnostics.ProcessStartInfo("http://192.168.0.101")
psInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Maximized
Dim myProcess As Process = System.Diagnostics.Process.Start(psInfo)

The IP Address is actually an IP camera.

It does actually work OK - I get the web page up, but I sometimes get the
error: "The system can not find the file specified". The strange thing is
that I don't always get the error. I haven't specified iexplorer.exe as the
target as that might not be the default browser on the customer's site.

-Jerry
 
Back
Top