Tagged Questions
The window-messages tag has no wiki summary.
5
votes
1answer
97 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’)
...
4
votes
4answers
2k 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 reproduces the problem.
...
3
votes
1answer
337 views
Execution difference between “App.exe” and “App.vshost.exe” with WndProc
I am attempting to adapt an application developed in VS 2008/C# that listens to another application's WM_ messages through the use of the Control.WndProc method. When the "app.exe" version is run, ...
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 ...
3
votes
6answers
363 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. When I use ...
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
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
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 ...
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
42 views
Window message sent to my topmost form/window when the taskbar/start menu is over it?
I have a C# Windows Forms program, in Windows 7, but I think it applies to any Windows program.
The main form of my program covers the entire screen, and has the Topmost property set. However, when I ...
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
138 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
225 views
PostMessage() or such on OS X. Sending messages to a window
What is the equivalent of PostMessage/SendMessage in Windows on Mac OS X?
I have recently started out with Mac development, with most of my experience coming from Windows and nix.
I want to hook a ...
0
votes
3answers
135 views
ESP error when sending window messages between threads
I have an Observer class and a Subscriber class.
For testing purposes, the observer creates a thread that generates fake messages and calls CServerCommandObserver::NotifySubscribers(), which looks ...
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 ...
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", ...