VB.Net Open Internet Explorer

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

Guest

I am currently migrating over from VB6 and I can't see to find a way to
launch a webpage in internet explorer from a hyperlink on a form.

There must be an easy way to accomplish this? I tried:

System.Diagnostics.Process.Start("Explore.exe", "http//webpath")
System.Diagnostics.Process.Start("http//webpath")
Shell("InternetExplorer.application")

all attempts failed. Any help would be greatly appreciated thanks.
 
This will open the link in a user's default browser:

Help.ShowHelp(this, url);

HTH,
Alexander Shirshov
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top