Hi, ich hab schon das Forum durchsucht, bin aber nicht auf die Lösung gestoßen.
Mein Problem ist folgendes:
Ich habe in meinem Projekt dieses Struktur:
Delphi-Quellcode:
type TConfig = class(TObject)
privat
a:String;
ConfigForm:TForm;
end;
Jetzt möchte ich wenn ich meine Form (ConfigForm) erstelle, den String "a" füllen.
Ich hätte gedacht, dass das ganze dann so gehen würde:
Delphi-Quellcode:
procedure ConfigForm.onCreate(...);
(self.parent as TConfig).a := 'asd';
end;
Geht aber natürlich nicht. Auch mit (self.owner as TConfig).a komme ich nicht weiter.
Weiß jemand eine Lösung?
Danke schonmal!