vote up 0 vote down star

I have a custom CTabCtrl which I am trying to customize (to automatically change pages).

If I handle ON_NOTIFY_REFLECT(TCN_SELCHANGE, ...) in my tab control, ON_NOTIFY(TCN_SELCHANGE, ...) is not received by the parent class.

How can I receive both notify messages in the child and parent classes?

Currently I am using a "workaround" of manually sending the WM_NOTIFY message to the parent class:

void CMyTabControl::OnSelChange(NMHDR *pHeader, LRESULT *pResult)
{
    const int index = this->GetCurSel();
    this->ShowTab(index);

    const CWnd *const pParent = this->GetParent();
    if (pParent != NULL)
    {
        *pResult = pParent->SendMessage(WM_NOTIFY, TCN_SELCHANGE, 
            reinterpret_cast<LPARAM>(pHeader));
    }
}

Edit: I've tried both *pResult = 0 and *pResult = 1 but it still doesn't send the message onto the parent. Also, I've noticed that when I send the message on to the parent I end up in an almost infinite loop (for some reason it does break out after several iterations).

flag

65% accept rate

2 Answers

vote up 1 vote down

you have to set pResult to FALSE, to tell windows to notify both

*pResult = FALSE;

From MSDN:

Your function must return TRUE if the notification message has been completely handled or FALSE if other objects in the command routing should have a chance to handle the message.

link|flag
I've tried, *pResult = 0, and *pResult = 1, but it has no effect. The message still isn't sent. – Mark Ingram Mar 10 at 9:05
vote up 0 vote down

I've found the answer:

http://msdn.microsoft.com/en-us/library/eeah46xd.aspx

Basically you have to use ON_NOTIFY_REFLECT_EX and then return FALSE from your function to enable the parent notify message to be fired.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.