Ave,
also wenn ich mir von TLabel eine Kompo ableite (D7)
Delphi-Quellcode:
type
TMyLabel = class(TLabel)
public
constructor Create(AOwner : TComponent); override;
end;
implementation
constructor TMyLabel.Create(AOwner: TComponent);
begin
inherited;
Name := 'TEST';
end;
geht der Zugriff auf Name problemlos.
Wo hast Du es den eingebaut?