Tagged Questions
5
votes
1answer
98 views
Are Window Messages “Reliable”?
This is somewhat of a general question regarding Windows programming:
Are Window messages "reliable"?
For example (these are just examples):
Can you be certain that a WM_MOUSEMOVE will happen ...
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’)
...
2
votes
1answer
133 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 ...
1
vote
2answers
61 views
MFC app doesn't seem to receive input messages?
We have a MFC Visual-C++ application that is not reacting to any user input.
(Note: Currently only known on one machine. The behavior does recur occasionally, but only after the App has been running ...
1
vote
2answers
84 views
Spy++ does not show my process - what does this signify?
Stage
We have a MFC desktop application that is "hanging" in that it doesn't react to any user input anymore. It is redrawn when switching to it via alt-tab however. (It does receive WM_SETFOCUS, ...
1
vote
3answers
125 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_SYSCOMMAND / SC_MOVE or ...
0
votes
2answers
72 views
WM_MSO_BROADCASTCHANGE value
What's the value for WM_MSO_BROADCASTCHANGE, and how would I figure it out for myself next time?
0
votes
1answer
139 views
How to know if someone else handled OnContextMenu
I have a CWnd derived class that has a WM_CONTEXTMENU handler (OnContextMenu), which has my default context menu. This class is being used at several places in my application.
Some of the places ...
0
votes
1answer
71 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, "CMyClassName", ...