Using the accepted answer did not work for me, as it always returned false, even if checking the list shows the existing value. I use the FindStringExact method, as recommended by Louis and Amit. In this case, this value is entered in the comboBox text box.
var index = comboBox1.FindStringExact(comboBox1.Text) if(index > -1) {
Larry z
source share