What would be the best way to open up Internet Explorer with a specific URL from my app?
Otherwise is there a way I can create a link to a website url? I have tried using a LinkLabel but can't get it working.
Thanks
Printable View
What would be the best way to open up Internet Explorer with a specific URL from my app?
Otherwise is there a way I can create a link to a website url? I have tried using a LinkLabel but can't get it working.
Thanks
You can use the ShellExecute() API.
Edit: Sorry, I thought this was Classic Visual Basic. :blush:
VB Code:
System.Diagnostics.Process.Start("http://www.mendhak.com/")