here is my code
text1.text = combo1.listindex
But text1.text will only be -1, even if I select other list from the combo box? why? how do I let computer know I select other list already???
Printable View
here is my code
text1.text = combo1.listindex
But text1.text will only be -1, even if I select other list from the combo box? why? how do I let computer know I select other list already???
put the text1.text = list1.listindex
in the click event of the combobox
text1.text = combo1.list(combo1.listindex)