Tagged Questions

5
votes
7answers
3k views

Looking for a replacement for windows messages used in inter-process communication in Delphi

Hi a have a multithread application (MIDAS) that makes uses of windows messages to communicate with it self MAIN FORM The main form receives windows messages sent by the RDM LogData(‘DataToLog’) ...
3
votes
2answers
3k views

Delphi MDI - handling open/close/activate child form

I'm developing MDI application which assigns a tab for each created MDI child. I need to "catch" OnActivate, OnCreate and OnDestroy events of child form in the main (parent) form code. Simply calling ...
2
votes
1answer
131 views

Why don't forms receive WM_NOTIFY messages for children of a TFrame?

The WM_NOTIFY message is often used for in-place "tool tips" (message balloon) and other control notifications, but if I place a control on a TFrame, then WM_NOTIFY messages never occur for those ...
2
votes
2answers
517 views

Delphi 2009 - Handle when window is restored via double clicking the SysMenu?

I need to handle when the user restores the form by double clicking the title bar. I tried handling the WM_SYSCOMMAND window message however this only works if the user restores the form via clicking ...
1
vote
1answer
99 views

Problems with closing main application window when having only the ID of its process

I have ID of the process. This process is an application which have a main window. I am trying to close this application by sending WM_CLOSE to its main window. I am searching its main window by using ...