How do I start a process, such as launching a URL when the user clicks a button?
You can use this syntax for running any application:
System.Diagnostics.Process.Start("Example.exe");
And the same one for a URL. Just write your URL between this ().
()
Example:
System.Diagnostics.Process.Start("http://www.google.com");