@アイテムを追加する


	//コンボボックスに追加する
	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);	


戻る