How do I set the selected item in a comboBox to match my string using C#?

This should do the trick:

Combox1.SelectedIndex = Combox1.FindStringExact("test1")

Leave a Comment