VS2010做的执行外部程序实例
MicrosoftVisualStudio2010做的执行外部程序实例,主要代码:stringsExe=tbExe.Text;stringsParm=tbParm.Text;ProcessprocessRun=newProcess();processRun.StartInfo.FileName=sExe;processRun.StartInfo.Arguments=sParm;processRun.StartInfo.CreateNoWindow=false;processRun.StartInfo.UseShellExecute=false;processRun.Start();
用户评论