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

TEditListBox
Adding many items to the list fast

To add many items to the TEditListBox, the use of BeginUpdate / EndUpdate will significantly accelerate this:
EditListBox.BeginUpdate;
// add items here
EditListBox.EndUpdate;