Click here to Skip to main content
15,899,003 members
Please Sign up or sign in to vote.
3.00/5 (1 vote)
See more:
I am using windows c# 2010
The form has a combobox.
As I type into the combobox, it looks for the items beginning with that letter.
i.e. typing R brings items beginning with R
But if I type quickly like RT, it brings up items beginning with RT.
Is there a way to control the speed you type into the combobox? Because the user may type slowly and want to see items beginning with RT?
Is there a setting for this please?
Thanks
Posted
Comments
Sergey Alexandrovich Kryukov 16-Dec-11 11:07am    
Not clear why would you need it. Why maximum speed is bad?
--SA
BillWoodruff 18-Dec-11 10:04am    
I'm confused by your question: if you type "RT," don't you want to see only the items beginning with "RT" ?

1 solution

If the autocomplete list is very large, you may consider a minimum text length before the list shows up. For example, you may show the autocomplete only when at least 2 characters have been typed into the box. This way the user does not have to see all items starting with R, just the ones starting with RT.
 
Share this answer
 

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