internet explorer - VB.net Open new IE window -
another 1 cannot seem find. in vb.net, how force new instance of ie or chrome when clicking button?
i may have existing windows open, want make when click button, opens either chrome, ie, etc. open new instance.
is possible? thanks!
the exe's should in path can run them this
process.start("chrome.exe", "--new-window http://www.bing.com") process.start("iexplore.exe", "http://www.bing.com")
if aren't in path, you'll need provide full path exe, c:\program files\internet explorer\iexplore.exe
by default on system chrome opens new tab if run chrome.exe without --new-window
parameter. when run iexplore.exe, opens new window default.
Comments
Post a Comment