Registriert seit: 18. Mai 2003
634 Beiträge
|
Re: Formular in DLL
3. Mai 2004, 20: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!
|