ATL
-
Hi all, In MFC, ON_MESSAGE() macro can be used to map userdefined messages. In ATL, what is the alternative macro for handling user defined messages? Regards, Rejeesh
-
Hi all, In MFC, ON_MESSAGE() macro can be used to map userdefined messages. In ATL, what is the alternative macro for handling user defined messages? Regards, Rejeesh
-
Hi all, In MFC, ON_MESSAGE() macro can be used to map userdefined messages. In ATL, what is the alternative macro for handling user defined messages? Regards, Rejeesh
-
Hi all, In MFC, ON_MESSAGE() macro can be used to map userdefined messages. In ATL, what is the alternative macro for handling user defined messages? Regards, Rejeesh
-
MESSAGE_HANDLER(WM_MYMESSAGE, OnMyMessage ) and the function prototype is // LRESULT MessageHandler(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled);
Thanx. Let me try it.