Thema: Delphi Form als .dll ???

Einzelnen Beitrag anzeigen

Bernd29bln

Registriert seit: 28. Feb 2005
Ort: Berlin
281 Beiträge
 
Delphi 7 Professional
 
#9

Re: Form als .dll ???

  Alt 13. Apr 2005, 20:04
da hab ich wohl einiges vergessen .
meine dll
Delphi-Quellcode:

library Project1;

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

{$R *.res}

procedure DLLFormShow;
var
  dllForm: TForm;
begin
  dllForm:=TForm.Create(Application);
  try
    dllForm.ShowModal;
  finally
    dllForm.Release;
  end;
end;

 
exports dllFormshow;

end.
function ?? ich hab da ne procedure

kann mir das mal jemand erklären?

MfG
Bernd
Es ist keine Schande, nichts zu wissen, wohl aber, nichts lernen zu wollen.
Sokrates
  Mit Zitat antworten Zitat