ComboBox (VB.NET)



To reset a combo box so that entries are no longer highlighted, first set the list index to 0 and then reset it to -1.

cmbCombo.SelectedIndex = 0
cmbCombo.
SelectedIndex = -1


See also List Box Clues for help populating a combo box, etc.


ComboBox Control Changes in Visual Basic .NET