I want to change the default browser of visual studio, I would like to use another to run some scripts that are having problems in internet explorer. I would like suggestions and examples of how to do this. Thanks in advance.
I want to change the default browser of visual studio, I would like to use another to run some scripts that are having problems in internet explorer. I would like suggestions and examples of how to do this. Thanks in advance.
You have some options, one of which is what Rovann quoted, so I researched it worth doing a test on Gecko, it's based on Mozilla. I will put a code sample in C # (for vb.net you will have no difficulties converting)
Dotnetbrowser (paid)
GeckoWebBrowser browser;
public Form1()
{
InitializeComponent();
var app_dir = Path.GetDirectoryName(Application.ExecutablePath);
Gecko.Xpcom.Initialize(Path.Combine(app_dir, "xulrunner"));
browser = new GeckoWebBrowser();
browser.Dock = DockStyle.Fill;
this.browser.Name = "browser";
this.Controls.Add(browser);
}