Aber das ist doch auch irgendwie nix ...
Warum erstellst du nicht einen Nachfahren von TForm und packst dort eine Eigenschaft rein:
Delphi-Quellcode:
type
TConfigForm = class( TForm )
private
FInfoFuerParent : string;
public
property InfoFuerParent : string read FInfoFuerParent write FInfoFuerParent;
end;
Und alle Forms, die du dann haben möchtest leitest du wiederum von dieser Klasse ab.
Delphi-Quellcode:
type
TEineTolleForm = class( TConfigForm )
end;
Jetzt zu deiner Ausgangsklasse:
Delphi-Quellcode:
type
TConfig = class(TObject)
privat
// a : String; Braucht kein Mensch mehr
ConfigForm : TConfigForm;
end;
Innerhalb der Klasse TConfig kannst du jetzt auf die Eigenschaft zugreifen:
ConfigForm.InfoFuerParent
Kaum macht man's richtig - schon funktioniert's
Zertifikat: Sir Rufo (Fingerprint: ea 0a 4c 14 0d b6 3a a4 c1 c5 b9
dc 90 9d f0 e9 de 13 da 60)