Is there a way to do that? :

Code:
with TLabel.create(nil) do begin
  ...
  someList.Add(this TLabel?);
end;
other than of course
Code:
L:=tlabel.create
with L do begin
  ...
  someList.Add(L)
end