I want to send a user-defined message, and process it in the destination Class.
(CWnd*) pDest->SendMessage(WM_USER,0,0);
This compiles with no error and will presumably send the msg.
I don't know how to map the msg at the receiving class.
Class Wizard doesn't list WM_USER as a message ID, so I'll have to code it myself.
(CWnd*) pDest->SendMessage(WM_USER,0,0);
This compiles with no error and will presumably send the msg.
I don't know how to map the msg at the receiving class.
Class Wizard doesn't list WM_USER as a message ID, so I'll have to code it myself.