How can I numbering items in ListView (vsReport)? Now I have something like that:
Item := ListView1.Items.Add;
Item.Caption :=inttostr(Item.Index+1);
but it only works if items are not sorted. If I sort everything is mixed.
|
How can I numbering items in ListView (vsReport)? Now I have something like that:
but it only works if items are not sorted. If I sort everything is mixed. | |||
|
feedback
|
|
Whenever the list is sorted you need to loop through the items and update the caption.
Personally I would switch to using the list view in virtual mode which makes adding an index column trivial. As you have it at present you need to work hard to keep the list's contents in sync with the underlying data. With a virtual list view that problem dissolves. | |||
feedback
|
|
Try moving the logic of numbering to a procedure, and call this method after of sort the listview. try this sample
| |||||||||||
feedback
|
|
I would take an approach more like doing some custom drawing. About 1/4 of the time I ever use list controls, I wind up using its custom drawing capabilities to accommodate for things like this. Refer to This Article which goes into some detail on how to accomplish custom drawing. You can check the index of the item as it's being drawn, and draw your number to the left of each item. I can put together a sample if you would like, but it is quite a bit of coding to do. But not only do you accomplish the numbering you want, but you can also do many other things like implement your own styles, draw images, draw other controls, etc. | |||
|
feedback
|