@アイテムを追加する


	//リストボックスに追加する
	CString	addname;
	//リストボックスに追加
	CListBox* fileList=(CListBox*)GetDlgItem(IDC_F_LIST);
	fileList->InsertString(-1,addname);


@選択したアイテムを削除する


	//選択したアイテムをリストボックスから削除する
	int focas;

	CListBox* fileList=(CListBox*)GetDlgItem(IDC_F_LIST);
	focas=fileList->GetCurSel();
	fileList->DeleteString(focas);	


戻る