views:

12

answers:

1

Using VB6.0, How to get itemdata of a selected item in a CheckedListBox?

A: 

Oh, I got it....

Dim i as integer 
If myList.Selected(i)  then
    i = chklstCar.ItemData(i)
End if
odiseh