开发者

attach an application into another in C#

开发者 https://www.devze.com 2022-12-11 14:55 出处:网络
how i can attach any other application to my applicati开发者_高级运维on? ، my goal is that i want load and run a .exe application by my application starting.

how i can attach any other application to my applicati开发者_高级运维on? ، my goal is that i want load and run a .exe application by my application starting. any one can help me ?


So you want to start a new Process from your application?

// Start Internet Explorer. Defaults to the home page.
Process.Start("IExplore.exe");


You might mean System.Diagnostics.Process.Start("cmd.exe") for instance, but without a bit more info, it's hard to tell whether you are after a more specific answer.

0

精彩评论

暂无评论...
验证码 换一张
取 消