Hi, I got this working
string root = Application.StartupPath;
string exePath = System.IO.Path.Combine(root, GlobalInfo.exePath); //to Paths defined
string argPath = System.IO.Path.Combine(root, GlobalInfo.argPath);
Process.Start(exePath, argPath + " 1");
Regards
|