I have a string "test1" and my comboBox contains test1, test2, test3, how do I set the selected item to "test1"? I.e. how do I match my string to one of the comboBox items?
I was thinking of the line below but this doesn't work.
comboBox1.SelectedText = "test1";
Thanks