How to open a new browser

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,
I used the following code to open a browser

System.Diagnostics.Process.Start(url

however, it took the latest activate opened browser (if exists already). I'd like to know how to open such web page in a new browser A, and every time I run the code again, the web page must be opened only in this browser A

Thanks in advance
 
Try Process.Start("iexplore.exe", url)

--
W.G. Ryan MVP Windows - Embedded

http://forums.devbuzz.com
http://www.knowdotnet.com/dataaccess.html
http://www.msmvps.com/williamryan/
Li Pang said:
Hi,
I used the following code to open a browser:

System.Diagnostics.Process.Start(url)

however, it took the latest activate opened browser (if exists already).
I'd like to know how to open such web page in a new browser A, and every
time I run the code again, the web page must be opened only in this browser
A.
 
Thanks William

It works fine. How about the situation for checking if the browser is already openned
 
Back
Top