Retreiving ListView Check Item
Hi,
I am trying to use a listview in my program. Filling the data was pretty straightfoward, enabling the checkbox as easy. But how do I get the data that have been check to use it. I am not able to figure out the way to retreive which Item have been selected. I found out some code that neen mousedown event, but seem it's only apply at .NET .
Hope someone bang is head on this problem and figure out the way to deal with it.. I am using VBA 6.3
Thanks in advance
Christian
Re: Retreiving ListView Check Item
Welcome to the Forums.
You can use the the ItemCheck event. ;)
VB Code:
Private Sub List1_ItemCheck(Item As Integer)
MsgBox List1.List(Item)
End Sub