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 >>

TMS Advanced Dropdown Controls
Adding an item in TAdvDetailDropDown

To add an item in the TAdvDetailDropDown component use the code below:
with AdvDetailDropDown1.Items.Add do 
begin 
  Caption := 'This is an item'; 
  Notes := 'This is the notes section'; 
  ImageIndex := 1; 
end;