Processing CBN_SELCHANGE Notification MessageLast reviewed: November 2, 1995Article ID: Q66365 |
The information in this article applies to:
SUMMARYWhen a combo box receives a CBN_SELCHANGE notification message, GetDlgItemText() will give the text of the previous selection and not the text of the new selection. To get the text of the new selection, send the CB_GETCURSEL message to retrieve the index of the new selection and then send a CB_GETLBTEXT message to obtain the text of that item.
MORE INFORMATIONWhen an application receives the CBN_SELCHANGE notification message, the edit/static portion of the combo box has not been updated. To obtain the new selection, send a CB_GETLBTEXT message to the combo box control. This message places the text of the new selection in a specified buffer. The following is a brief code fragment:
... /* other code */ case CBN_SELCHANGE: hCombo = LOWORD(lParam); /* Get combo box window handle */ /* Get index of current selection and then the text of that selection */ index = SendMessage(hCombo, CB_GETCURSEL, (WORD)0, 0L); SendMessage(hCombo, CB_GETLBTEXT, (WORD)index, (LONG)buffer); break; ... /* other code */NOTE: For Win32 applications, change the WORD and LONG casts to WPARAM and LPARAM, respectively.
|
Additional reference words: 3.00 3.10 3.50 3.51 4.00 95 combobox
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |