a.exe include b.exe ,a.exe release after circulate b.exeHow do

解决方案 »

  1.   

    a.exe include b.exe ,a.exe release after circulate b.exe
    After circulate??  What do you means,please?
      

  2.   

    in your a.exe 's project
    System.Diagnostics.Process.Start("b.exe");
      

  3.   

    or create new project c(c.exe)
    in c project :
    do thing as your mind
      

  4.   

    我有个a工程,我想把b.exe文件嵌入到a工程里,编译后a.exe运行释放出b.exe 。
    两个都是.NET的程序。
      

  5.   

    System.Diagnostics.Process.Start("b.exe");
    this.exit();
      

  6.   

    在a.exe结束之前
    System.Diagnostics.Process.Start(b.exe)
      

  7.   

    晕,打包我会、调用外部程序我会。我的意思是象加壳脱壳一样,a.exe程序里包含b.exe,运行a.exe自动脱壳,释放出b.exe程序到指定目录。
      

  8.   

    把b.exe作为资源文件打包即可~
      

  9.   

    把b程序做成嵌入资源。
     项目----添加现有项目---------选择b程序----------解决方案(属性 设置成嵌入资源)读取资源获得是stream,然后把它写到相应的文件夹是可以的。 http://www.microsoft.com/china/MSDN/library/netFramework/netframework/Nfdnformswinforms02202003.mspx