I have created user control using Active X control in C# windows form. i want to add the another .exe in this control.
Ex: i create a login form when i login that time the another .exe open.
I want to fit this .exe in the user control.
I have created user control using Active X control in C# windows form. i
Share
You can always include anything as “embedded resource” in your project.
But if you want to start the “exe” it depends whether the exe is itself an assembly (.NET) or not…
With a .NET exe you could launch it from memory…
With a non-.NET (=native) exe you need to write it to some storage and then start it from there…