Page 1 of 1

Listview row unique handle

Posted: 12 Aug 2017, 09:56
by singasong
Hello,

I have an XML file of items that I'm loading into a listview , each item has a unique ID, but the data for each item is not necessarily unique.
I need to be able to edit, delete, add, sort the listview but still know which item each row points to without having to create a whole column to store the unique ID.
Is it possible that every time I insert a row I get/store a unique handle for that row?

Thank you

Re: Listview row unique handle  Topic is solved

Posted: 12 Aug 2017, 16:48
by just me
:arrow: LV_EX -> LV_EX_MapIDToIndex() / LV_EX_MapIndexToID() (Index = row number)

Re: Listview row unique handle

Posted: 13 Aug 2017, 04:49
by singasong
Thank you very much :)