P
Paul M
hi,
i have a listview which displays items with 2 subItems each.
How can i store these 3 items from each row into a string array?
currently i am storing only the first item, as below:
Public strFields As String()
For Each lv As ListViewItem In Me.lstFields.CheckedItems
tmpValues &= lv.Text & ";"
Next
strFields = Split(tmpValues, ";")
Can i add 2 more dimensions to this array so i can store subItem under
strFields(1,x) and subItem 2 under strFields(2,x)
Thanks,
Paul.
i have a listview which displays items with 2 subItems each.
How can i store these 3 items from each row into a string array?
currently i am storing only the first item, as below:
Public strFields As String()
For Each lv As ListViewItem In Me.lstFields.CheckedItems
tmpValues &= lv.Text & ";"
Next
strFields = Split(tmpValues, ";")
Can i add 2 more dimensions to this array so i can store subItem under
strFields(1,x) and subItem 2 under strFields(2,x)
Thanks,
Paul.