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

Popular posts from this blog

javascript - Karma not able to start PhantomJS on Windows - Error: spawn UNKNOWN -

Nuget pack csproj using nuspec -

c# - Display ASPX Popup control in RowDeleteing Event (ASPX Gridview) -