Did you have a look at the unit PropEdits mentioned above...?
Yes, I have looked and I know it.
However, the available editor basics do not allow me to do it the way I want, or I can't use it like that.
In the standard approach, TDataSet downloads to the Combobox all TDataSet-derived elements that are on the mold.
I want to do something like this:
I have Collections where I create any number of objects, eg TDataSetCollectionItem.
Where TDataSetCollectionItem comes from:
TDataSourceItem = class(TCollectionItem)
In the standard approach, I should do:
property DataSetCollectionItem: TDataSetCollectionItem read FDataSetCollectionItem write FDataSetCollectionItem
Putting the next TDataSetCollectionItem elements on the form, I would have a Combobox similar to TDataSet
The problem is that I want to keep these items in the collection, not on the form.
Hence my question at the beginning how TDataSet works to see how it works.