B4J Question Listview

HansDieter

Member
Licensed User
Longtime User
I have some items in the list of a ListView. Now i need to add another item into the list at a given index. But i find it only how to go to the last of the list. Is there a way to insert a item at a given index?
 

stevel05

Expert
Licensed User
Longtime User
ListView1.Items.InsertAt(3,"InsertThis")
 
Upvote 0
Top