How to Suggest Values or Autocomplete Values When A User Types Into a Combo Box

08-06-2012 .Net has a 5 seconds super easy way to achieve this. Use ComboBox.AutoCompleteSource and ComboBox.AutoCompleteMode properties: (Available from .Net 2.0 onwards) Steps: Load all possible values to ComboBox.Items collection – this is the easiest source available. Select Properties of the ComboBox and select ComboBox1.AutoCompleteSource to “List Items” Select ComboBox.AutoCompleteMode to anything other than “none”Continue reading “How to Suggest Values or Autocomplete Values When A User Types Into a Combo Box”