Ja ich meinte Constructor. Aber ich verstehe leider überhaubt nicht, wie ich das umsetzten soll.
So ist Quatsch oder ?
Delphi-Quellcode:
TThreadItem = class(TCollectionItem)
private
public
FThreadItem:TMyThread;
constructor Create(ACollection: TCollection); override;
published
end;
constructor TThreadItem.Create(ACollection: TCollection);
begin
inherited Create(ACollection);
FThreadItem:=TMyThread.Create;
end;