码迷,mamicode.com
首页 > 其他好文 > 详细

调用外部EXE文件

时间:2019-01-26 14:30:00      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:new   alt   文件   技术   res   result   ESS   cli   nta   

实现效果:

  技术分享图片

知识运用:

  Process类的Start方法

实现代码:

        private void button1_Click(object sender, EventArgs e)
        {
            OpenFileDialog open = new OpenFileDialog();
            open.Filter = "EXE文件(*.exe)|*.exe";
            if (open.ShowDialog() == DialogResult.OK)
                textBox1.Text = open.FileName;
        }
        private void button2_Click(object sender, EventArgs e)
        {
            System.Diagnostics.Process.Start(textBox1.Text);
        }

  

调用外部EXE文件

标签:new   alt   文件   技术   res   result   ESS   cli   nta   

原文地址:https://www.cnblogs.com/feiyucha/p/10323304.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!