Further to this question I have decided to overwrite the PreTranslateMessage function of my main window CMainFrame to check if a WM_MOUSEWHEEL message has been sent, and if it has and the target of the message is a combo box then prevent the message from being dispatched.
However, I am having an issue determining if the target of the message is a combo box, here is what I am currently trying:
BOOL CMainFrame::PreTranslateMessage( MSG* pMsg )
{
CWnd* pWnd = CWnd::FromHandle( pMsg->hwnd );
if( pWnd )
{
if( pMsg->message == WM_MOUSEWHEEL )
{
CRuntimeClass* pRuntimeClass = pWnd->GetRuntimeClass();
bool bIsCombo = pRuntimeClass->IsDerivedFrom( RUNTIME_CLASS(CComboBox) ) || pWnd->IsKindOf( RUNTIME_CLASS(CComboBox) );
if( bIsCombo && !reinterpret_cast<CComboBox*>(pWnd)->GetDroppedState() )
return TRUE;
}
}
return CFrameWndEx::PreTranslateMessage( pMsg );
}
However, this doesn't work because the runtime class always seems to be CWnd, so I'm curious to know if there's a way to get this to work? Using a dynamic_cast from CWnd* to CComboBox* also didn't appear to work.
Thanks in advance!
