G
Guest
hi,
I have a for loop, which runs through all the rows in a listview.
however, i added some new rows within the for loop..
so my problems now is that it doesn't loop thru the whole table, but instead
only upto the orginal number of rows...... How should i update the row count
so it can loop thru all the rows included the newly added ones??
Dim k As Integer
For k = 0 To MyListView.Items.Count - 1
....
add some rows...
....
changes some rows...
....
Next
Thanks.
I have a for loop, which runs through all the rows in a listview.
however, i added some new rows within the for loop..
so my problems now is that it doesn't loop thru the whole table, but instead
only upto the orginal number of rows...... How should i update the row count
so it can loop thru all the rows included the newly added ones??
Dim k As Integer
For k = 0 To MyListView.Items.Count - 1
....
add some rows...
....
changes some rows...
....
Next
Thanks.