g resussi a faire des truc mais j'aimerai bien que quelqu'un me dit pourquoi ca ca marche pas:
Process compiler =
new Process();
compiler.StartInfo.FileName = "ping 150.2.10.195";
compiler.StartInfo.UseShellExecute =
false;
compiler.StartInfo.RedirectStandardOutput =
true;
compiler.Start();
lblVnc.Text = compiler.StandardOutput.ReadToEnd().ToString();
compiler.WaitForExit();