Hello
I have this
Type
TA = class(TObject)
….
End;
and a lot of children
TA1 = class(TA)
TA2 = class(TA)
…
TAi=class(TA)
..
Then I have also another class TB that manages the above TAi.
Let say, as an example, I have something like this
Type
TB = class(TObject)
X : array of TA;
..
End;
All went fine, unless… I have the need that one of TAi, let say TAn, needs to access a field of TB !!!
I solved the problem in a very contrived way, any suggestions from the experts ?
Regards