private void ExecuteCalculat ionEngine()
{
string executionPath = Path.GetDirecto ryName(InputFil eName);
Directory.SetCu rrentDirectory( executionPath);
var startInfo = new ProcessStartInf o(Path.Combine( executionPath,
"xxxxxxxxx.exe" ));
startInfo.Windo wStyle = ProcessWindowSt yle.Hidden;
startInfo.Creat eNoWindow = true;
startInfo.Worki ngDirectory = executionPath;
Process.Start(s tartInfo).WaitF orExit();
}
Can anyone tell me why the window still appears?
Thanks
Pete
{
string executionPath = Path.GetDirecto ryName(InputFil eName);
Directory.SetCu rrentDirectory( executionPath);
var startInfo = new ProcessStartInf o(Path.Combine( executionPath,
"xxxxxxxxx.exe" ));
startInfo.Windo wStyle = ProcessWindowSt yle.Hidden;
startInfo.Creat eNoWindow = true;
startInfo.Worki ngDirectory = executionPath;
Process.Start(s tartInfo).WaitF orExit();
}
Can anyone tell me why the window still appears?
Thanks
Pete
Comment