File not found error on Process.start

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top