after I inited a combo box.... how can i make a string to be shown at the top of the combo box, next to the "down arrow" of the combo box.
thanks.
This is a discussion on combo boxes within the Windows Programming forums, part of the Platform Specific Boards category; after I inited a combo box.... how can i make a string to be shown at the top of the ...
after I inited a combo box.... how can i make a string to be shown at the top of the combo box, next to the "down arrow" of the combo box.
thanks.
Read more about Combo Boxes here.Code:... SendMessage (hWndCombo, CB_ADDSTRING, 0, (LPARAM)(LPSTR) strSingleEditLine); ... SendMessage (hWndCombo, CB_SETCURSEL, (WPARAM) index, 0);
gg