//コンボボックスに追加する CString addname; //リストボックスに追加 CComboBox* fileList=(CComboBox*)GetDlgItem(IDC_COMBO); fileList->InsertString(-1,addname); |
//選択したアイテムをコンボボックスから削除する int focas; CComboBox* fileList=(CComboBox*)GetDlgItem(IDC_COMBO); focas=fileList->GetCurSel(); fileList->DeleteString(focas); |