i am doing a windows application program and these are the code inside
System.Diagnostics.Process.Start("ConsoleApplication1.exe");
Thread.Sleep(500);
System.Diagnostics.Process.Start("ConsoleApplication2.exe");
Thread.Sleep(500);
System.Diagnostics.Process.Start("ConsoleApplication3.exe");
as if one of the console application program face error it will show in the cmd, so how would i going to capture those error in cmd and show in the message box as i dont want to show the cmd error message to users.