faint,用成员变量Add就行了呀

解决方案 »

  1.   

    CB_ADDSTRING
    An application sends a CB_ADDSTRING message to add a string to the list box of a combo box. If the combo box does not have the CBS_SORT style, the string is added to the end of the list. Otherwise, the string is inserted into the list, and the list is sorted. CB_ADDSTRING 
    wParam = 0;                         // not used; must be zero 
    lParam = (LPARAM) (LPCTSTR) lpsz;    // address of string to add 
     
    可用SendDlgItemMessage   API函数,具体参数查查就知道了