Link to home
Start Free TrialLog in
Avatar of touchsonic
touchsonic

asked on

C# Embed EXE Application in form?

Just wondering if it possible to embed a third party application inside C# application form?
Avatar of Jaime Olivares
Jaime Olivares
Flag of Peru image

could you elaborate your needs?
how are you planning to run this app? do you will pass some info?
indeed you cannot embed and aplication into a form but into another application as a resource file.
ASKER CERTIFIED SOLUTION
Avatar of Mike Tomlinson
Mike Tomlinson
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of touchsonic
touchsonic

ASKER

Thank you guys!

The sample that Idle_Mind provide works as it should. However, the application I am trying to load, loads 3 different EXE. which loads outside of the application form. The exe loads the main program, loads a login box and an optional virtual keyboard.  Any suggestions would help!
Use the EnumWindows() or the FindWindow() API to find the other windows and get a handle to them...then proceed as above.
Code Snippet please. Not really an C# expert.

Thank you. :)