C#:
private void Link_Clicked (object sender, System.Windows.Forms.LinkClickedEventArgs e) {
try {
System.Diagnostics.Process.Start(e.LinkText);
} catch {
MessageBox.Show("The following could not be found:\n\n"+e.LinkText,"Not found");
}
Last edited by a moderator: