I have the need to embed the user interface (UI) of a secondary application into a primary application. I can easily host the secondary application main form into the primary application using SetParent. i'm using a named pipe to communicate between the two application. I can even resolve tabbing issues using AttachThreadInput API in the secondary application with the help of a dummy TEdit in the primary application. So far so good.
I cannot solve the following: Any modal form in the secondary application is not seen as modal for the primary application and this cause major trouble.
btw: Don't tell me to use a DLL, OCX nor ActiveX. I have two plain exe files.
Any help / hint appreciated.