i want make the combo box editable in c# that is it shouldaccept from key board and from drop doen but it is replacing the thins i want to appent the text typed and selected any help .
+1
A:
You need to:
1) Set the AutoCompleteMode property to AutoCompleteMode.SuggestAppend
2) Set the AutoCompleteSource property to AutoCompleteSource.CustomSource
3) Set the AutoCompleteCustomSource property to an AutoCompleteStringCollection of your possible matches.
Nicholas H
2009-04-30 06:46:21
Please accept my answer if you're happy with it.
Nicholas H
2009-05-04 00:27:56