Delphi 2007. TAdvListView v1.6.3.0
I am building the ALV dynamically in the code and using
to write the information into the ALV. What i would like to do, and i cannot find any info on it, is change the row color based on the xVer field.
1. Is there a way to do this?
2. Does anyone have any suggestions on how to do this?
Thanks in advance for any assistance.
Tom C
I am building the ALV dynamically in the code and using
Code:
procedure writetoadvlistview2(xAList:TAdvListView);
var
myitem: TListItem;
begin
with xAList do begin
myitem:=Items.Add;
myitem.Caption:= xenv;
myitem.SubItems.Add(xmemName);
myitem.SubItems.Add(xaddress);
myitem.SubItems.Add(xcs);
myitem.SubItems.Add(xzip);
myitem.SubItems.add(xmemberid);
myitem.SubItems.add(xVer);
myitem.SubItems.Add(xAttes);
myitem.SubItems.Add(xAttd);
myitem.SubItems.add(xOwed);
myitem.SubItems.add(xCC);
myitem.SubItems.add(xHold);
myitem.SubItems.add(xSemN);
end;
end;
1. Is there a way to do this?
2. Does anyone have any suggestions on how to do this?
Thanks in advance for any assistance.
Tom C