Frequently Asked Component Specific Questions

Options

Display all FAQ items

Search FAQ items:


Displaying items 1 to 1 of 1, page 1 of 1

<< previous next >>

TAdvOutlookList
Programmatically changing an item's text in a group

with AdvOutlookList1 do
begin
  // this changes column 0 & 1 text of item 1 in group 0
  Groups[0].ChildItem[1].Strings[0] := '111111';
  Groups[0].ChildItem[1].Strings[1] := datetostr(now);
  Invalidate;
end;