Einzelnen Beitrag anzeigen

Benutzerbild von Jens Schumann
Jens Schumann

Registriert seit: 27. Apr 2003
Ort: Bad Honnef
1.644 Beiträge
 
Delphi 2009 Professional
 
#3

Re: Eigenschaft existiert nicht

  Alt 9. Sep 2004, 07:58
Hallo,
so ganz habe ich die Frage nicht verstanden. Aber evt ist folgender Code eine Hilfe:

Delphi-Quellcode:
TSecond = class; // ist etwas wie eine forward Deklaration

TFirst = class(TObject)
  public
  property Second : TSecond read FSecond write FSecond;
end;

TSecond = class(TObject)
  public
  property First: TFirst read FFirst write FFirst ;
end;
TFirst kennt TSecond und TSecond kennt TFirst.
I come from outer space to save the human race
  Mit Zitat antworten Zitat