Message Only Window?
-
Hi Masters! -------------- Could you please tell me what's a Message Only Window and how can I create one using _Pure Win32 API_s? Thank you in advance ... :-O
Thank you masters!
-
Hi Masters! -------------- Could you please tell me what's a Message Only Window and how can I create one using _Pure Win32 API_s? Thank you in advance ... :-O
Thank you masters!
A Message Only Window is typically a window that you create that is kept invisible and does not receive any user input. Its sole purpose is to receive window messages. You can use the
CreateWindow(...)
function to create just about any window that you would ever need. BTW - I think that there is a special style available in later versions of the Win32 SDK for message-only windows, but I cannot find it now. Peace!-=- James
Please rate this message - let me know if I helped or not! * * *
If you think it costs a lot to do it right, just wait until you find out how much it costs to do it wrong!
Remember that Professional Driver on Closed Course does not mean your Dumb Ass on a Public Road!
See DeleteFXPFiles -
Hi Masters! -------------- Could you please tell me what's a Message Only Window and how can I create one using _Pure Win32 API_s? Thank you in advance ... :-O
Thank you masters!
this is what msdn says: A message-only window enables you to send and receive messages. It is not visible, has no z-order, cannot be enumerated, and does not receive broadcast messages. The window simply dispatches messages. check it on http://msdn.microsoft.com/en-us/library/ms632599(VS.85).aspx#message_only[^]