using System.Diagnostics;
 private void 导出数据ToolStripMenuItem_Click(object sender, EventArgs e)
        {
            Process myProcess = new Process();

            string fileName = @"成绩排名器.exe";  
 
            string para ="你好,欢迎你!";  
  
            ProcessStartInfo myProcessStartInfo = new ProcessStartInfo(fileName, para);  
  
            myProcess.StartInfo = myProcessStartInfo;  
  
            myProcess.Start();  
  
         
        }

 

posted on 2013-10-26 16:32  一笑而过88  阅读(219)  评论(0编辑  收藏  举报