Thema
:
Delphi
Parentproblem bei Komponentenentwicklung!?
Einzelnen Beitrag anzeigen
Flocke
Registriert seit: 9. Jun 2005
Ort: Unna
1.172 Beiträge
Delphi 10.2 Tokyo Professional
#
3
Re: Parentproblem bei Komponentenentwicklung!?
10. Sep 2005, 17:28
Genau! So sollte es gehen:
markieren
Delphi-Quellcode:
constructor
TPanelEdit.Create(AOwner: TComponent);
begin
inherited
Create(aOwner);
FEdit := TEdit.Create(Self);
FEdit.
Name
:= '
Edt
';
FEdit.Parent := Self;
end
;
Volker
Besucht meine
Garage
Aktuell:
RtfLabel 1.3d
,
PrintToFile 1.4
Zitat
Flocke
Öffentliches Profil ansehen
Mehr Beiträge von Flocke finden