Hi there.
I was trying to filter items in combobox using BindingSource.Filter, to filter after "гр." and "с." ,but typing in combo it recieve only one letter
and mouse disapear...
Any help pls.
This is my lazy try:
Private Sub Combo11_TextChanged(sender As Object, e As EventArgs) Handles Combo11.TextChanged
If Me.Combo11.Text <> "" Then
Me.Selista2BindingSource.Filter = String.Format("SelisteIme Like 'гр.{0}%' OR SelisteIme Like 'с.{1}%'", _
Combo11.Text, Combo11.Text)
Combo11.DroppedDown = True
Combo11.SelectedIndex = -1
End If
End Sub