Hello,
i have a problem. Imagine you need to save 2 columns to ComboBox (for example 1st column is UserName and second one is ID). Probably you try to use:
Combobox1.Items.Add('*UserName*');
but what about ID? How to access to item with ID?
It would be really good if there would be something like:
ShowMessage(Combobox1.Items.Selected.Id); //ID of selected item for database purposes
And same for other components like ListBox, ListView etc.