G
GT
Hello
C#-winform application starts a DOS-EXE which is a ARJSFX.
Everything is working fine, but the output from the EXE is not shown in the
dosbox (something like extracting...).
I konow i could redirect the output but it would be much simpler to simply
see the normal dosbox-output.
System.Diagnostics.ProcessStartInfo pkw = new
System.Diagnostics.ProcessStartInfo(tmpDir + "some.exe");
pkw.UseShellExecute = true;
pkw.WindowStyle =
System.Diagnostics.ProcessWindowStyle.Normal;
pkw.Verb = "open";
//pkw.Arguments = "/y";
pkw.WorkingDirectory = tmpDir;
System.Diagnostics.Process pr =
System.Diagnostics.Process.Start(pkw);
Application.DoEvents();
pr.WaitForExit(300000);
Thanks for any help
C#-winform application starts a DOS-EXE which is a ARJSFX.
Everything is working fine, but the output from the EXE is not shown in the
dosbox (something like extracting...).
I konow i could redirect the output but it would be much simpler to simply
see the normal dosbox-output.
System.Diagnostics.ProcessStartInfo pkw = new
System.Diagnostics.ProcessStartInfo(tmpDir + "some.exe");
pkw.UseShellExecute = true;
pkw.WindowStyle =
System.Diagnostics.ProcessWindowStyle.Normal;
pkw.Verb = "open";
//pkw.Arguments = "/y";
pkw.WorkingDirectory = tmpDir;
System.Diagnostics.Process pr =
System.Diagnostics.Process.Start(pkw);
Application.DoEvents();
pr.WaitForExit(300000);
Thanks for any help