Is it possible to process the items in a TListBox and do something with each one that has been selected by the user ... e.g.
for i := 0 to listbox.items.count - 1 do
begin
if listbox.items.selected = true then
do something ......
end;
I know that .selected is not available but can't find any way of identifying which items are selected and which are not. I don't want to remove the item - just do some processing on it then de-select it.
Merry Christmas to you all!!
Steve