Gemini
New Member
Netherlands
7 Posts |
Posted - Oct 04 2006 : 03:16:33 AM
|
VA version 1535 VS 2003 In the message_map I often have parts with the wrong coloring. I have a project that has in different messagemas examples of ON_BN_CLICKED with the correct coloring and also with the wrong coloring. Following is a codesnippet with the coloring I have. Should ON_CBN_SELCHANGE in this snippet not also be purple?
BEGIN_MESSAGE_MAP(PrintModeDlg, CDialog) ON_BN_CLICKED(IDC_BTN_ABOUT, OnAboutButton)
ON_BN_CLICKED(IDC_CHECK2, OnCheckOverprinting) ON_BN_CLICKED(IDC_CHECK5, OnCheckSetHeadHeight)
ON_CBN_SELCHANGE(IDC_COMBO1, OnCbnSelchangeColorMode) ON_CBN_SELCHANGE(IDC_COMBO2, OnCbnSelchangeResolution) ON_CBN_SELCHANGE(IDC_COMBO3, OnCbnSelchangeHeadHeight) ON_CBN_SELCHANGE(IDC_COMBO4, OnCbnSelchangePreHeater) ON_CBN_SELCHANGE(IDC_COMBO5, OnCbnSelchangePrintHeater) END_MESSAGE_MAP() |
|