H HansDieter Member Licensed User Longtime User Nov 20, 2019 #1 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?
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?
Erel B4X founder Staff member Licensed User Longtime User Nov 20, 2019 #2 B4X: ListView.Items.InsertAt(...) Better to use xCLV. Upvote 0
stevel05 Expert Licensed User Longtime User Nov 20, 2019 #3 ListView1.Items.InsertAt(3,"InsertThis") Upvote 0