Delphi-PRAXiS

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   GUI-Design mit VCL / FireMonkey / Common Controls (https://www.delphipraxis.net/18-gui-design-mit-vcl-firemonkey-common-controls/)
-   -   Delphi Aus TThread ein Form zur Laufzeit erstellen (https://www.delphipraxis.net/9399-aus-tthread-ein-form-zur-laufzeit-erstellen.html)

APP 25. Sep 2003 16:08


Aus TThread ein Form zur Laufzeit erstellen
 
Hallo,

ich habe es wieder einmal mit den Threads:

Ich möchte aus einem Thread eine Form zur Laufzeit erstellen,
aber irgendwo ist der Wurm drinnen... :cry:

In Hauptformular erzeuge ich den Thread:
Delphi-Quellcode:
PROCEDURE TfMain.Button1Click(Sender: TObject);
BEGIN
   Thread1 := TBaseThread.Create('Form 1');
   Thread1.MainFormClass := Self;
   Thread1.FormCaption := 'Form 1';
   Thread1.FreeOnTerminate := True;
   Thread1.OnTerminate := ThreadEnde;
   Thread1.Resume;
END;
in der ThreadUnit möchte ich das Form erzeugen:
Delphi-Quellcode:
USES
   Forms,                                        // Application
   uThreadWindow,                                // TfThreadWindow
   Classes;
...

PROCEDURE TBaseThread.Execute;
VAR
   fThreadWindow                    : TfThreadWindow;
BEGIN
   fThreadWindow := TfThreadWindow.Create(FMainFormClass); // <-- Crash
   TRY          // TfThreadWindow.Create(Application) ist der gleiche Fehler
      fThreadWindow.Caption := FaFormTitle;
      fThreadWindow.ShowModal;
   FINALLY
      fThreadWindow.Free;
      fThreadWindow := NIL;
   END;
END;
Nach dem Create gibt es einen EInvalid Operation... Leinwand/Bild erlaubt kein Zeichen... Fehler

Was mache ich da Falsch?

APP 25. Sep 2003 19:55

Re: Aus TThread ein Form zur Laufzeit erstellen
 
Hallo Leute,

ich glaube, für mein Problem gibt es keine Lösung:

Zitat:

> I need to create a designed form in a separate thread. But when I try to
> do it exception occurs!!!
>

The VCL is not thread safe as far as all the visual stuff is concerned.
Forms have to be created in the main thread, they don't work in a
secondary thread.

Peter Below (TeamB)
Quelle: News://borland.public.delphi.objectpascal

Ich habe noch die wildesten Vorschläge dazu gefunden (z.B. eine
neue TApplication Instanz im Thread zu erzeugen,...) aber es
funkte (natürlich) keiner.

Motzi 26. Sep 2003 07:42

Re: Aus TThread ein Form zur Laufzeit erstellen
 
Die einzige Möglichkeit die du hast ist auf nonVCL zurückzugreifen und dir dein Fenster so zu erzeugen...

APP 26. Sep 2003 08:44

Re: Aus TThread ein Form zur Laufzeit erstellen
 
Hallo Motzi,

Du hast recht, das habe ich Vergessen zu erwähnen :oops:


Alle Zeitangaben in WEZ +1. Es ist jetzt 06:24 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