Einzelnen Beitrag anzeigen

Benutzerbild von Flocke
Flocke

Registriert seit: 9. Jun 2005
Ort: Unna
1.172 Beiträge
 
Delphi 10.2 Tokyo Professional
 
#3

Re: Parentproblem bei Komponentenentwicklung!?

  Alt 10. Sep 2005, 17:28
Genau! So sollte es gehen:
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
  Mit Zitat antworten Zitat