how do i add/remove items in a combo box? Do i just use GetWindowText to read what item is selected?
Printable View
how do i add/remove items in a combo box? Do i just use GetWindowText to read what item is selected?
Send the CB_ADDSTRING message to add a string, and to get the string, send the CB_GETLBTEXT message.
ohh ok..thanks