Thanks.
But now i´m using sTListView and now i have a new problem. :a8:
How to put a image in collumns?
CustomDrawSubItem
Code:
var
I, K : Integer;
X : String;
begin
for I := 0 to Lista.Items.Count -1 do
begin
for K := 0 to Lista.Items.SubItems.Count -1 do
begin
If Lista.Items.SubItems[6] = 'X' Then
Item.ImageIndex := 0;
end;
end;
end;
Error: List index out of bounds(6). 🙁
I want to put a image when find X.
Thanks for all!