Hallo zusammen,
ich erzeuge mit folgenden Code Formulare
Delphi-Quellcode:
if not assigned(frmContentMantel) then
Application.CreateForm(TfrmContentMantel, frmContentMantel);
Jetzt möchte ich an einer anderen Stelle überprüfen ob das das Formular erzeugt ist. Das mache ich so
Delphi-Quellcode:
if not assigned(Application.FindComponent(formListe[n]) as TForm) then
begin
continue;
end;
Das komische ist, das funktioniert unter Windows und
OS X wunderbar. Nur unter iOS wird das
continue;
ausgeführt.
Kann mir jemand helfen?
Gruß
Philip