Private Sub combobox1_TextChanged(sender As Object, e As EventArgs) Handles ComboBox1.TextChanged
ComboBox1.Items.Clear()
For Each s As String In listOfString
If s.Contains(ComboBox1.Text) Then
ComboBox1.Items.Add(s)
End If
Next
'ComboBox1.DroppedDown = True
End Sub
When I use my following sub, my text caret keeps returning to the front of the combobox every time I enter a new character. I want it to stay in position and not move to the front. How do I do this?