![]() |
Delphi-Version: 2005
Variable auf Form setzen
Hallo,
ich habe eine Variable F:TForm und einen String S mit dem Namen eines Formulars der Anwendung. Jetzt möchte ich F auf das Formular mit dem Namen S setzen. Wie mach ich das? Edit: Hier ein Beispiel wie ich das meine:
Delphi-Quellcode:
var i:integer;
F:TForm; begin i:=2; F:='Form'+IntToStr(i); //Und ich möchte hier "Form2" angezeigt bekommen showmessage(F.name); end; Viele Grüße! |
AW: Variable auf Form setzen
Delphi-Quellcode:
f := Findcomponent(s);
|
AW: Variable auf Form setzen
:wall:
So einfach... Dachte das gilt nur für Buttons etc... Danke!
Delphi-Quellcode:
F:=Findcomponent(Formname) as TForm;
|
AW: Variable auf Form setzen
Auch ein Formular ist eine Komponente
|
AW: Variable auf Form setzen
Klappt aber trotzdem irgendwie nicht...
Delphi-Quellcode:
Gibt eine Fehlermeldung (Zugriffsverletzung bei Adresse...)procedure TForm4.Button1Click(Sender: TObject); var F:TForm; begin F:=FindComponent('Form'+IntToStr(4)) as TForm; showmessage(F.name); end; |
AW: Variable auf Form setzen
Heisst die Form auch Form4?
|
AW: Variable auf Form setzen
Ja...
Delphi-Quellcode:
klappt wunderbar...
showmessage(Form4.name);
Edit: Fehler gefunden: Application.findcomponent muss es heißen... |
AW: Variable auf Form setzen
Um eventuelle Zugiffsschutzverletzungen entgegenzuwirken könnte man vielleicht noch folgendes machen:
Delphi-Quellcode:
Gruß
...
var c: TComponent; begin c := FindComponent('Form4'); if not Assigned(c) then exit; if (c is TForm) then ShowMessage(TForm(c).Name); end; |
AW: Variable auf Form setzen
Von welcher Klasse nimmst du die Methode?
Delphi-Quellcode:
Alternativ kannst du auch noch Screen.Forms[] durchgehen
f := Application.FindComponent( 'Form4') as TForm;
|
Alle Zeitangaben in WEZ +1. Es ist jetzt 06:21 Uhr. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz