eg: on entering a character/characters it should list out (shorten) all the items with the character/characters accordingly.The list should be visible to the user.
How to configure autofill option for ComboBox.
Collapse
X
-
Tags: None
-
This is standard behavior for a Combobox when the AutoExpand Property is set to Yes, which is the default for this property.
Welcome to Bytes!
Linw ;0)> -
To have the items show, have the combobox drop down when the user enters it, using code like this:
Code:Private Sub ComboBoxName_GotFocus() ComboBoxName.Dropdown End Sub
Linq ;0)>Comment
-
Thanks for help, I got the solution
I got the solution but I coded as,
Private Sub cmbCountry_KeyP ress(KeyAscii As Integer)
cmbCountry.Drop down
End Sub
And set to Auto Expand option to True.Comment
Comment