Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have CMainFrame class for my main window, and CChildView class for my view as generated by AppWizard. I have other handwritten classes, so I want to make my CMainFrame class as my center of operations. I intend to reroute the messages in the CChildView class MessageMap to CMainFrame class MessageMap. I've tried using SubclassWindow() function, but keep getting errors from some library files which i didnt even know exist (I'm new to MFC). Please I need help rerouting these messages. A pointer will be highly appreciated. Thanks.

share|improve this question
see solution here: codeproject.com/Questions/553005/… – cha Feb 27 at 0:39
@Cha Thanks, but search has shown me that Its only command messages (from menu and toolbar) that are sent to MainFrame and routed to CChildView using CMainFrame::OnCmdMsg() function. Windows messages (from buttons and edits) are sent to their owners which is the CChildView. I need a way to handle these messages in MainFrame. Thanks. – Anthony Oyovwe Feb 27 at 10:48
No help at all from this forum? Please i need help. Maybe with SubclassWindow() function. – Anthony Oyovwe Mar 3 at 15:03

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.