I am using C# to run another .exe applicaiton.
however I want to run the .exe in background I tried Start info hide bu.t it didn't help
How can I do that?
currently this is the code I am using
_p = new System.Diagnostics.Process();
_startInfro = new System.Diagnostics.ProcessStartInfo();
_startInfro.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden;
_startInfro.FileName = tmp[0];
_startInfro.Arguments = deleteRangeCommand;
_p.StartInfo = _startInfro;
_p.Start();