问题如题:组合框既可以从下拉列表中选,又可以输入,从下拉列表中选我知道在OnSelchang中用下面语句实现
void CAddItemDlg::OnSelchangeAddbo2() 
{
// TODO: Add your control notification handler code here
 int nIndex = m_objbox.GetCurSel();
 m_objbox.GetLBText(nIndex,m_ObjName);
}可我不知道怎么取得直接输入的数据?