Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
VB6.0を使用して、CheckedListBoxで選択したアイテムのアイテムデータを取得するにはどうすればよいですか?
Dim ItemData as String ItemData = myList.ItemData(myList.ListIndex)
あ、わかった....
Dim i as integer If myList.Selected(i) then i = chklstCar.ItemData(i) End if