C# 使用Process 进程调用其他程序

            IniHelper ini = new IniHelper(); //读取配置文件
            string path = ini.ContentValue("BLDZ", "YYHLDZ"); //调用的程序路径 如C:\bl\app.exe
            string path1 = ini.ContentValue("SMARTINI", "SETTING"); //其他程序的配置文件 如C:\bl\app.ini
            string workpath = ini.ContentValue("WORKPATH", "PATH"); //工作目录 如C:\bl
            ini.WriteIni("EditTest", "ZYH", zhuyh, path1);//写入到其他程序的目录下的配置文件中
            Process pro = new  Process();//打开程序B
            pro.StartInfo.WorkingDirectory = workpath;///需要更改新线程的工作目录 不更改目录的话会出现一些意外的错误
            pro.StartInfo.FileName = path; //启动的程序路径
            pro.Start();
            pro.WaitForExit();
            int Result = pro.ExitCode;//程序B退出回传值
            if (Result == 1)//接收到程序B退出代码"1"
            {
                MessageBox.Show( "退出程序B");
            }

 

C# 使用Process 进程调用其他程序

上一篇:window.onload 不触发的解决办法


下一篇:DataGridView绑定数据源后动态删除行