How to open a new browser
(Thursday, December 23, 2004)
Found the following interesting discussion in the Newsgroups:
How to open a new browser by:Anonymous
| 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
| | | Reply: by:William Ryan eMVP
| | | 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/
| | | Reply: by:Anonymous
| | | Thanks William,
It works fine. How about the situation for checking if the browser is already openned?
|
|
0 Comments:
Post a Comment