Tengo este código:
Código:
Process p = new Process();
private void richTextBox1_LinkClicked(object sender, LinkClickedEventArgs e)
{
string sys = Environment.GetFolderPath(Environment.SpecialFolder.System);
string Ie = Path.Combine(sys, "iexplorer.exe");
Process.Start(Ie, e.LinkText);
}
Y el IDE me arroja este error.
El sistema no puede hallar el archivo especificado
En que puedo estar equivocado ... Gracias !