/////////////////////////////////////////////////////////////////////
| 669 | |
| 670 | ////////////////////////////////////////////////////////////////////////// |
| 671 | void CInPlaceComboBox::SelectString( LPCTSTR pStrText ) |
| 672 | { |
| 673 | m_wndEdit.SetWindowText(pStrText); |
| 674 | int sel = m_wndDropDown.GetListBox().FindString( -1,pStrText ); |
| 675 | if (sel != LB_ERR) |
| 676 | { |
| 677 | SetCurSel(sel,false); |
| 678 | } |
| 679 | } |
| 680 | |
| 681 | ////////////////////////////////////////////////////////////////////////// |
| 682 | CString CInPlaceComboBox::GetSelectedString() |
no test coverage detected