1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
//--------------------------------------------------------------
BOOL CMyComboBox::OnEditUpdate() //ON_CONTROL_REFLECT_EX(CBN_EDITUPDATE, OnEditUpdate)
{
CString str;
GetWindowText(str);
int nLength = str.GetLength();
DWORD dwCurSel = GetEditSel();
WORD dStart = LOWORD(dwCurSel);
WORD dEnd = HIWORD(dwCurSel);
if (SelectString(-1, str) == CB_ERR)
{
SetWindowText(str);
if (dwCurSel != CB_ERR)
SetEditSel(dStart, dEnd);
}
if (dEnd < nLength && dwCurSel != CB_ERR)
SetEditSel(dStart, dEnd);
else SetEditSel(nLength, -1);
// la chaine n'existe pas donc nouvelle chaine...
return FALSE;
} |
Partager