afx_msg BOOL OnMouseWheel(UINT nFlags, short zDelta, CPoint pt);
and a function body,
BOOL CTab::OnMouseWheel(UINT nFlags, short zDelta, CPoint pt)
{
MessageBeep(0);
return 0;
}
When I breakpoint MessageBeep(0), i see that it is not being called
even when I mousewheel over the CWnd control.
Is there anything else I need to do to handle these messages in my
custom control.
Thanks
Carpii
ON_WM_MOUSEWHEEL()
--
Cheers
Check Abdoul
-----------------
"Carpii" <carp...@gmail.com> wrote in message
news:1129567196.8...@z14g2000cwz.googlegroups.com...
Be well.