Thema: Delphi Formular in DLL

Einzelnen Beitrag anzeigen

Benutzerbild von SleepyMaster
SleepyMaster

Registriert seit: 18. Mai 2003
634 Beiträge
 
#4

Re: Formular in DLL

  Alt 3. Mai 2004, 19:58
Delphi-Quellcode:
library Project1;

uses
  Forms,
  Unit1 in 'Unit1.pas{Form1};

{$R *.res}

procedure Show; export;stdcall;
begin
  Application.Initialize;
  Application.CreateForm(TForm1, Form1);
  Application.Run;
end;

exports
  Show;

begin
end.
(Projektdatei)

So sölltes gehen! Hoffe ich!
  Mit Zitat antworten Zitat