假設我有這樣的代碼:儘量減少每一個名爲C#Processinfo
string strCmdText2 = @"/C connect.exe --connect 1.txt";
ProcessStartInfo PSI = new ProcessStartInfo("CMD.exe", strCmdText2);
PSI.CreateNoWindow = true;
//PSI.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden;
PSI.RedirectStandardInput = true;
PSI.RedirectStandardOutput = true;
PSI.RedirectStandardError = true;
PSI.UseShellExecute = false;
Process p = Process.Start(PSI);
問題,,執行這些語句的時候,在connect.exe其窗口打開,我怎麼能隱藏它?像在後臺運行?
謝謝
什麼是'connect.exe'?這是一個外部程序嗎? –
yep connect.exe是一個外部程序...我希望它在從我的GUI執行時被隱藏 – Lufthansa
connect.exe所做的是它只是彈出一個窗口,我想在調用時隱藏它。謝謝 – Lufthansa