How do I get data from multicolumn ListView

  • Thread starter Thread starter nsteele84
  • Start date Start date
N

nsteele84

Hi

I have the following code for a 3 column listview:

intNumItemsSelected = lstPieceMark.SelectedItems.Count

For intCount = 0 To intNumItemsSelected - 1
strPieceMark = lstPieceMark.SelectedItems.Item(intCount).Text
Next

This returns the data in the first column. How do I get the data in
the next two columns also?

Thanks

Nick Steele
 
Back
Top