Tagged Questions

4
votes
2answers
663 views

Firefox/Gecko control interfering with Windows Forms key presses

Edit: In addition to the bounty, we're willing to pay $250 to have this bug fixed in the Firefox/Gecko codebase. Here is a simple test project (Visual Studio 2008 C#) that reproduc …
3
votes
2answers
461 views

Delphi MDI - handling open/close/activate child form

Hi, 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) fo …
3
votes
6answers
279 views

Why do modal dialogs that are opened through a menu item’s click event process all window messages?

So for the past day or so I have been fixing a bug that is caused by a modal dialog. I work on an application which communicates with the server through the Windows message pump. …
2
votes
1answer
148 views

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

Hi, 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 restor …
2
votes
7answers
1k 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 LogDa …
0
votes
1answer
47 views

What conditions need to be fulfilled for a window message to be posted?

I've successfully registered a window class using RegisterClassEx and created a window using CreateWindowEx: m_hInstance = ::GetModuleHandle(NULL); ... m_hWnd = ::CreateWindowEx(0 …
0
votes
3answers
72 views

Determine if a given window is currently being moved.

Basically, I'm looking for a IsWindowMoving(HWND) Win32 API call. I need to know if the user is currently moving a window. The window doesn't belong to me, so listening for WM_SYS …