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

TAdvSmoothListBox
How to delete a single selected item

You can remove the selected item with:
AdvSmoothListBox1.Items.BeginUpdate;
AdvSmoothListBox1.Items[AdvSmoothListBox1.SelectedItemIndex].Free;
AdvSmoothListBox1.Items.EndUpdate