I have to "embed" an .exe within a panel in a .net windows form. I am doing this using user32.dll SetParent to set the launched app's parent to the forms Panel handle.
Once this is done, I would like to
- Hide the title bar of the .exe
- lock the exe into the panel (maximized) so it cannot be moved or closed.
Suggestions?