Einzelnen Beitrag anzeigen

TRBB

Registriert seit: 31. Okt 2007
18 Beiträge
 
Delphi 7 Professional
 
#14

Re: Aus Frame heraus auf übergeordnete (haupt)Form zugreifen

  Alt 1. Nov 2007, 11:05
Tausend Dank an euch beide!!!

Beide Versionen Funktionieren nun!

Delphi-Quellcode:
  var
  parentForm: TControl;
begin
  parentForm := self.Parent;
  while not (parentForm is TForm) do
    parentForm := parentForm.Parent;
  (parentForm as TForm).caption := 'test erfolgreich';
end;
und

ValidParentForm(self).caption := 'test erfolgreich';
Also nochmal Danke für eure Hilfsbereitschaft!

Viele Grüße
TRBB
  Mit Zitat antworten Zitat