combobox notification before changing selection
C / C++ / MFC
2
Posts
2
Posters
0
Views
1
Watching
-
-
When selecting a different item in my combobox control, I need to save some dialog information for the previously selected item. Which combobox notification should I use for this purpose and how? Thanks
-- "Programming is an art that fights back!"
From MSDN: ON_CBN_SELCHANGE The selection in the list box of a combo box is about to be changed as a result of the user either clicking in the list box or changing the selection by using the arrow keys. When processing this message, the text in the edit control of the combo box can only be retrieved via GetLBText or another similar function. GetWindowText cannot be used.