Click here to Skip to main content
15,891,674 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,
i need to show the auto suggestion similar like google search dynamically.
i need to maintain show one more list for drop down items also.

i tried with dev express comboboxedit control but it is not worked for me...
How to make it can any one pls help me...
Posted
Updated 13-Jun-12 0:24am
v2

Hi,

You need to make AutoSuggest property of combo box true.
This will solve your problem.
 
Share this answer
 
Comments
rajesh.r4321 13-Jun-12 6:52am    
In devExpree combobox there is no AutoSuggest property
Yes, there is no AutoSuggest in DevExpress , in that case you need to develop a logic around KeyPress/KeyDown event.
 
Share this answer
 
IncrementalFilteringMode="StartsWith"
 
Share this answer
 
i got solution here is the one...
Devexpress combobox control have default maskBox in it which can provide the auto suggestion feature similar like .Net defult Combobox control.
Here is the sample which works for me to show the auto suggestions...
C#
comboBox1.MaskBox.AutoCompleteMode = AutoCompleteMode.SuggestAppend;
comboBox1.MaskBox.AutoCompleteSource = AutoCompleteSource.CustomSource;
comboBox1.MaskBox.AutoCompleteCustomSource = colValues;


comboBox1.Properties.Items we can for drop down items of combobox
 
Share this answer
 
v2

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