G
Guest
Hi, I have found a lot of information about adding items (and sub items) to a listview and that is fine. What I need to be able to do is retrieve the information (items and sub items) back (say in a messagebox) - I can't seem to work out how to do this however. Would anyone be able to point in in the right direction here
//
For intCounter As Integer = 0 To ListView1.Items.Count -
MsgBox(ListView1.Items.Item(intCounter).ToString
Nex
//
That is the nearest I have so far, but the item I want displaying is actually '10000001' but the message box prints 'ListViewItem: {10000001}
Any pointers or advice would be much appreciated - thanks, Synthanator
//
For intCounter As Integer = 0 To ListView1.Items.Count -
MsgBox(ListView1.Items.Item(intCounter).ToString
Nex
//
That is the nearest I have so far, but the item I want displaying is actually '10000001' but the message box prints 'ListViewItem: {10000001}
Any pointers or advice would be much appreciated - thanks, Synthanator