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 TAdvImagePickerDropDown

To add an item in the TAdvImagePickerDropDown component use the code below:
with AdvImagePickerDropDown1.Items.Add do 
begin 
  Caption := 'Image 1'; 
  Image.LoadFromFile('Image1.jpg'); 
end;