关注中...
能否作象MMC的程序

解决方案 »

  1.   

    Process + ProcessStartInfo 类.
      

  2.   

    //创建进程
    Process process = new Process;
    process.StarInfo.FileName = executableFilename;
    process.Start();
      

  3.   

    ProcessStartInfo pInfo = new ProcessStartInfo();
    pInfo.UseShellExecute = true;
    pInfo.FileName = "http://www.listeningexpress.net/nce/ncetext.zip";
    //这里的FileName是默认打开的文件名
    Process p = Process.Start(pInfo);
      

  4.   

    using System.Diagnostics;
    Process.Start(OpenFullPath);
    例如:
    Process.Start(@"C:\CSharp3\cardtest.exe");欢迎您使用Microsoft技术,分享知识,共同进步!