I have a for loop that loops through items. The items could be any size. i can loop through all items as shown in the code below
I however want to pick the first 20 items, write them somewhere (e.g. in a panel with listview), then the next twenty and write to a different panel with a listview etc until i have picked all the items without repeating.
Kindly assist with a way to do this.
B4X:
For i = 0 To items.Size - 1
displayinpanel
I however want to pick the first 20 items, write them somewhere (e.g. in a panel with listview), then the next twenty and write to a different panel with a listview etc until i have picked all the items without repeating.
Kindly assist with a way to do this.