Click here to Skip to main content
15,886,832 members
Articles / Desktop Programming / MFC
Article

A note about using control notification messages in MFC classes

Rate me:
Please Sign up or sign in to vote.
4.00/5 (5 votes)
1 Jul 2002 76.8K   28   2
How your control can eat its parent's messages.

Introduction

Suppose we have a combobox-based control created in the usual manner (see http://www.codeproject.com/combobox/listboxex.asp or many others similar CodeProject articles). This control is used in a dialog and is notified about the control's activities using the common notify-message mapping

ON_CBN_SELCHANGE(IDC_MY_COMBO, OnSelchangeCombo)

All is fine until the moment the control requires notification as well. Without any problems we can map the new functionality and all works well:

ON_CONTROL_REFLECT(CBN_SELCHANGE, OnSelchange)

From the user's view selecting a new combo item changes the actual value but after clicking OK the new values were not used. What's going on?

The problem is with recognizing the changes made. Because we are using ON_CONTROL_REFLECT the dialog's OnSelchangeCombo is not being called.

Of course it is not system bug but documented behaviour - see MSDN TN062: Message Reflection for Windows Controls - and a solution is easy: Instead of using ON_NOTIFY_REFLECT() use ON_NOTIFY_REFLECT_EX() or provide a more general handler. For example:

BOOL CMyComboBox::OnChildNotify(UINT message, WPARAM wParam, 
                                LPARAM lParam, LRESULT* pLResult) 
{
    if(message == WM_COMMAND)
    {
        int wNotifyCode = HIWORD(wParam);
        int wID = LOWORD(wParam); 
        HWND hwndCtl = (HWND) lParam;

        switch(wNotifyCode)
        {
        case CBN_SELCHANGE:
            //original OnSelchange code call 
            break;
        }
    }
    
    return CComboBox::OnChildNotify(message, wParam, lParam, pLResult);
}

Hopefully reading this will help you avoid similar cases.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Software Developer (Senior)
Slovakia Slovakia
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralUse ON_CONTROL_REFLECT_EX instead Pin
DiWa1-Jul-02 21:34
DiWa1-Jul-02 21:34 
GeneralRe: Use ON_CONTROL_REFLECT_EX instead Pin
Dieter Hammer7-Jul-04 1:16
Dieter Hammer7-Jul-04 1:16 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.