This is my simple code, yet it throws me an exception for some reason
private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
System.Diagnostics.Process.Start("chrome", "https://www.google.com/");
}
The Exception:
System.ComponentModel.Win32Exception: 'The system cannot find the file specified.'
I don't understand why this is happening
To open a url using the WinForms's linkLabel component do
find more in the official documentation.
take a look there : already answered question.
good luck.