G
Guest
Dear all,
I have a menu item in my application on which when a click is executed
should open internet explorer and jum to the predifined adress.
Doing this generated an execption error like "file not foud", sound strange..
I launch it in the following way :
Dim sWebLink As String
sWebLink = "http://miscrosoft.com"
myProcessStartInfo = New ProcessStartInfo(sWebLink)
myProcess = New Process
myProcess.StartInfo = myProcessStartInfo
myProcess.StartInfo.WindowStyle = ProcessWindowStyle.Normal
myProcess.Start(myProcess.StartInfo)
What is wrong on what I am doing ?
regards
serge
I have a menu item in my application on which when a click is executed
should open internet explorer and jum to the predifined adress.
Doing this generated an execption error like "file not foud", sound strange..
I launch it in the following way :
Dim sWebLink As String
sWebLink = "http://miscrosoft.com"
myProcessStartInfo = New ProcessStartInfo(sWebLink)
myProcess = New Process
myProcess.StartInfo = myProcessStartInfo
myProcess.StartInfo.WindowStyle = ProcessWindowStyle.Normal
myProcess.Start(myProcess.StartInfo)
What is wrong on what I am doing ?
regards
serge