On a dialog-box we create a ON_EN_SELCHANGE(<ID>, <Function>) and it works
fine. This ribbon was created on code not on resource editor (There exists
any resource editor for this kind of control?).
How can I get these events? I should create a subclass for my
CMFCRibbonComboBox?
Thanks.
Say you want to catch it in a view, add an ON_COMMAND for it in your view's
message handler
ON_COMMAND(ID_MYCOMBO,OnMyCombo)
void CMyView::OnMyCombo()
{
m_pMyComboBox->GetCurSel();
}
AliR.
"Jaqueline" <jaqu...@no-answer.com> wrote in message
news:OdUQH8wX...@TK2MSFTNGP05.phx.gbl...