comment afficher loutput d'un process dans un textbox

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
            Process myProcess = new Process();
            myProcess.StartInfo.FileName = label8.Text + label14.Text;
            myProcess.StartInfo.WorkingDirectory = label8.Text + label15.Text;        
            myProcess.StartInfo.UseShellExecute = false;
            myProcess.StartInfo.RedirectStandardOutput = true;
            myProcess.StartInfo.CreateNoWindow = true;
            myProcess.Start();
merci d'aidé un debutant