Click here to Skip to main content
15,917,795 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Is there a way to have the extended matching feature in a datacombo in C#, just the way it used to be for vb.
All what we want to do is to facilitate the user to select from a datacombo. when he types on the combo box, the selection should go to the first row that matches the lates word formed in typing.

Regards
Posted

1 solution

Try:
C#
comboBox1.AutoCompleteMode = AutoCompleteMode.SuggestAppend;
comboBox1.AutoCompleteSource = AutoCompleteSource.ListItems;
 
Share this answer
 
Comments
Mayank Topiwala 12-Oct-11 6:58am    
how to get DataCombo.BoundText value in a TextBox ?

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900