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 get the selected items from TAdvSmoothlistbox when the property Multiselect = true;

for i := 0 to advsmoothlistbox1.Items.Count - 1 do 
begin
   if advsmoothlistbox1.Items[i].Selected then ... 
   // returns a selected item in multiselect 
end;