2
Answers

ComboBox & StringCollections

alejandro.rivera

alejandro.rivera

20y
2.3k
1
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;
Answers (2)