:salut:
comment afficher loutput d'un process dans un textbox
merci d'aidé un debutant :(Code:
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();