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.
精彩评论