accessing subitems within listview control

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

how can I access a subitem (column) within a collection of checked items. I
can get to the checkeditems but i want a specific column within the subitems.

thanks in advance
 
Betty said:
how can I access a subitem (column) within a collection of checked items.
I
can get to the checkeditems but i want a specific column within the
subitems.

\\\
MsgBox(Me.ListView1.CheckedItems(0).SubItems(2).Text())
///
 
Back
Top