Halcon_Gocator_VisualStudio

Exe code to start another program:

ProcessStartInfo info = new ProcessStartInfo();
            info.FileName = @"D:\Kita\SOFT_WARE\qq\Bin\QQ.exe";
            info.Arguments = "";
            info.WindowStyle = ProcessWindowStyle.Minimized;
            Process pro = Process.Start(info);
            //pro.WaitForExit();

  

Guess you like

Origin www.cnblogs.com/kita/p/11374628.html