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