when insert in the first char then it display the related item the combo box
sachin mali 0 Newbie Poster
Recommended Answers
Jump to PostSee if this helps.
1 ComboBoxPublic Class Form1 Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load '//--- For testing purposes. Dim arTemp() As String = {"ComboBox1", "AutoCompleteSource", "AddRange", "Items", "With", "End With"} ComboBox1.Items.AddRange(arTemp) '---\\ '============================== '//These options can be located in the ComboBox's …
Jump to PostChange the auto complete mode for your combobox so it suggest and append
cboCrew.AutoCompleteMode = AutoCompleteMode.SuggestAppend
Jump to PostI might be your custom source.
If you have your list populated before you can try getting the values from the listitem.Private Sub Sample() cboCrew.AutoCompleteMode = AutoCompleteMode.SuggestAppend cboCrew.AutoCompleteSource = AutoCompleteSource.ListItems End Sub
All 9 Replies
prvnkmr194 0 Posting Whiz in Training
codeorder 197 Nearly a Posting Virtuoso
skran 9 Light Poster
bluehangook629 0 Posting Whiz in Training
skran 9 Light Poster
bluehangook629 0 Posting Whiz in Training
codeorder 197 Nearly a Posting Virtuoso
smerinas 0 Newbie Poster
bluehangook629 0 Posting Whiz in Training
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.