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
Inserting a new child item at a position in a group

with AdvOutlookList1.Groups[0].InsertChild(1) do
begin
  // this inserts a new item in the first group after the first item
  Add('52256');
  Add(DateToStr(now-4));
  Add('Update website');
end;