Pour lancer un programme externe ce n'est pas compliqué :
System.Diagnostics.Process p = new System.Diagnostics.Process();
p.StartInfo.FileName = "IEXPLORE";
p.StartInfo.Arguments = "www.google.com";
p.Start();
Par contre, pour qu'il s'affiche dans un panel de ta Form ca je ne sais pas malheureusement ..
________________________________________________________________________
Hardware is what we play with until it breaks, Software is what we play with until it works !
