Hi, I was wondering how to retrieve the integer position
in the datacombo box list. so when a user selects item #3 in the combo box, I can get the number 3. In C++, there is an ItemIndex property to do this. Can I do this in VB?
Mark
Printable View
Hi, I was wondering how to retrieve the integer position
in the datacombo box list. so when a user selects item #3 in the combo box, I can get the number 3. In C++, there is an ItemIndex property to do this. Can I do this in VB?
Mark
Code:Private Sub Command1_Click()
Text1.Text = Combo1.ListIndex + 1
End Sub