0

使用 VB6.0,如何获取 CheckedListBox 中选定项的 itemdata?

4

2 回答 2

0

哦,我明白了....

Dim i as integer 
If myList.Selected(i)  then
    i = chklstCar.ItemData(i)
End if
于 2010-10-23T09:22:44.510 回答
0
Dim ItemData as String
ItemData = myList.ItemData(myList.ListIndex)
于 2012-10-12T03:01:15.183 回答