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 ...
1
vote
2answers
62 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
85 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
2answers
194 views

Is it possible to tell Scintilla to ignore certain keystrokes and pass them to the parent window?

I would like Scintilla to ignore certain key combinations like, Ctrl+Enter or Ctrl+D, and to notify the parent window when they are entered. I read through the documentation and could not figure out ...