ComboBox & StringCollections
Hi All,
How do you populate a combo box from a StringCollection? It populates the combo box but when I try to retrieve the selected text it brings back a blank value. Here is the code below that I'm using.
private stringcollection colors;
colors.add("Red");
colors.add("White");
colors.add("Blue");
cboColor.DataSource = colors;