Hi i have some problem with the listview control i dont know how to use it
here is what i wanna do
sub mysub() handles myEvent
for i=0 to 3
Dim lv As ListViewItem = ListView1.Items.Add(x(i))
lv.SubItems.Add(x(i))
lv.subitems.add(x(i))
...
next
end sub
so when the next event occurs i wanna update those values with the new ones
but i have no idea how to do it
any advice?