How to create a hidden window ?
The purpose of this window is to receive some messages.
|
|
|
When you create the window, omit the WS_VISIBLE flag and don't call ShowWindow. |
|||||||||
|
|
You can follow the instructions here: http://msdn.microsoft.com/en-us/library/ms632599(VS.85).aspx#message_only |
|||||
|
|
In a win32/mfc environment what you need to do is create a class and inherit from CWnd like this:
in the constructor of that class you would instantiate a window like this:
This gets you a hidden window with a message pump almost ready to rock and roll. the rest of the story is to provide the linkage between the window messages and the handlers for those messages. This is done by adding a few macros and a message handler to your implementation file (.cpp) like this:
Then you need to fill in the rest of the glue in the header file like this:
And just like magic, you have a hidden window all ready to pump your messages. In order to use this message window you would instantiate the class retrieve it's handle and send or post messages as desired. Just like this:
|
|||||||
|
|
You call |
|||||||||||||||
|
|
Ahh, Just came across an issue. If u fail to specify HWND_MESSAGE unexpected behaviours could occur. I have used NULL which is NOT correct. In my case it caused that MS Excel took 10s or more to load an xls file, while it normally takes less then a second when my app was not running! MSDN says this as someone mentioned before. |
|||
|
|