I'm using this code to make sure there's data in the drop down...
CmbCards.Items.Count <= 0
whats the code to check if they selected something from the dropdown?
cmbcards.text = ""
?
Printable View
I'm using this code to make sure there's data in the drop down...
CmbCards.Items.Count <= 0
whats the code to check if they selected something from the dropdown?
cmbcards.text = ""
?
You can use ComboBox.SelectedIndex, which is a zero based index of the selected item, or -1 if nothing is selected.