Guys --
I want to prevent standart selection of text as result of Tab.
ComboBox has %CBS_DROPDOWNLIST Or %WS_TABSTOP styles.
With textboxes all is clear
But what to do with combobox ?
------------------
E-MAIL: [email protected]
I want to prevent standart selection of text as result of Tab.
ComboBox has %CBS_DROPDOWNLIST Or %WS_TABSTOP styles.
With textboxes all is clear
Code:
Case %WM_COMMAND If (CbCtlMsg = %EN_KILLFOCUS) Or (CbCtlMsg = %EN_SETFOCUS) Then SendMessage GetDlgItem(CbHndl, CbCtl), %EM_SETSEL, -1, -1 InvalidateRect CbLparam, ByVal 0&, 1 Exit Function End If
------------------
E-MAIL: [email protected]
Comment