Wednesday 5 December 2012

Run to the other exe



Solutions:          using System.Diagnostics; // use name space
                        string str = Application.StartupPath + "\\SaveAsPDFandXPS.exe";
            Process process = new Process();
            process.StartInfo.FileName = str;
            process.Start();    

No comments:

Post a Comment