I have an app that calls an eternal EXE using process.start. My issue is I
have a couple command line parameters that need to be put in, so that it
would read:
Process p = new Process();
p.EnableRaising Events = false;
p.StartInfo.Wor kingDirectory = "C:\\AutoPM\\Au toD\\"; //**TESTING
p.StartInfo.Cre ateNoWindow = false;
p.StartInfo.Win dowStyle = ProcessWindowSt yle.Minimized;
ProcessStartInf o startInfo = new ProcessStartInf o("AutoDim.exe" , "
delay=60");
System.Diagnost ics.Process.Sta rt(startInfo);
Where the delay=60 is the command line param values.
Anyone have any ideas or assistance? Thanks
have a couple command line parameters that need to be put in, so that it
would read:
Process p = new Process();
p.EnableRaising Events = false;
p.StartInfo.Wor kingDirectory = "C:\\AutoPM\\Au toD\\"; //**TESTING
p.StartInfo.Cre ateNoWindow = false;
p.StartInfo.Win dowStyle = ProcessWindowSt yle.Minimized;
ProcessStartInf o startInfo = new ProcessStartInf o("AutoDim.exe" , "
delay=60");
System.Diagnost ics.Process.Sta rt(startInfo);
Where the delay=60 is the command line param values.
Anyone have any ideas or assistance? Thanks
Comment