AUTOCPMPLETE COMBOBOX
-
i have a bounded combobox. i need to convert that to an autocomplete combobox. i need when i type first character in combobox, complete other character automatically. I HAVE A BOUNDED COMBOBOX
-
i have a bounded combobox. i need to convert that to an autocomplete combobox. i need when i type first character in combobox, complete other character automatically. I HAVE A BOUNDED COMBOBOX
comboBox.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest; //or any other mode
comboBox.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems; -
i have a bounded combobox. i need to convert that to an autocomplete combobox. i need when i type first character in combobox, complete other character automatically. I HAVE A BOUNDED COMBOBOX