Delphi-PRAXiS

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   Object-Pascal / Delphi-Language (https://www.delphipraxis.net/32-object-pascal-delphi-language/)
-   -   Delphi DLL und Formulare (https://www.delphipraxis.net/92320-dll-und-formulare.html)

Dragon27 17. Mai 2007 22:38


DLL und Formulare
 
Hallo,

mich hat etwas total irritiert (Auszug aus DSDT):


Export von Formularen
Wenn man häufig die gleichen Formulare benötigt, ist eine DLL mit eingebundenen Formularen ideal. Die Vorgehensweise gleicht dem Erstellen "normaler" Projekte: Man wirft die Komponenten aufs Formular und erstellt die Ereignisroutinen. Um das Projekt in eine DLL zu verwandeln geht man dann folgendermaßen vor:

In der Projektdatei das Hauptprogramm löschen (Application.CreateForm(TForm1, Form1);)
Ändern des Bezeichner "programm" in "library"
Erstellen einer Schnittstellenroutine
In der Schnittstellenroutine wird das Formular "createt" und angezeigt:
Der Quellcode dazu würde so aussehen:

Delphi-Quellcode:
procedure DLLFormular;
var
  Form1: TForm1;
begin
  Form1:=TForm1.Create(Application);
  try
    Form1.ShowModal;
  finally
    Form1.Release;
  end;
end;
Kann mir zu diesem Thema jemand genauer erklären was mit Schnittstellenroutine gemeint ist?

Danke

Gruß

fkerber 18. Mai 2007 00:17

Re: DLL und Formulare
 
Hi!

Kennst du das DLL-Tutorial von Dsdt?
http://www.dsdt.info/tutorials/dlls/

(Hoffe mal, dein Auszug ist nicht hieraus - ich habe es nicht ganz gelesen)


Ansonsten vielleicht das hier:
http://assarbad.net/stuff/tutorials/...l_tutorial.pdf


Ciao, Frederic


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