Thema: Delphi Form als Plugin

Einzelnen Beitrag anzeigen

ebber

Registriert seit: 31. Okt 2006
243 Beiträge
 
#3

Re: Form als Plugin

  Alt 27. Mär 2007, 16:11
1. Gut
2. Ich denke mal ich bin unerfahren
3.

Ich habe jetzt eine neue Dll gemacht in die Dll eine neue Form hinzugefügt.

Das ist die Dll

Delphi-Quellcode:

library Plugin;

{ Important note about DLL memory management: ShareMem must be the
  first unit in your library's USES clause AND your project's (select
  Project-View Source) USES clause if your DLL exports any procedures or
  functions that pass strings as parameters or function results. This
  applies to all strings passed to and from your DLL--even those that
  are nested in records and classes. ShareMem is the interface unit to
  the BORLNDMM.DLL shared memory manager, which must be deployed along
  with your DLL. To avoid using BORLNDMM.DLL, pass string information
  using PChar or ShortString parameters. }


uses
  SysUtils,
  Classes,
  Unit1 in 'Unit1.pas{Form1};

{$R *.res}


function Form1Show;
begin

  Result := Form1.Show;

end;



exports
  Form1Show;


begin
end.

Also 1. bei function Form1Show; fehlt noch result type ?
2. geht das dann überhaupt so ?



Wie genau erzeuge ich jetzt eine Instanz ?

MfG
  Mit Zitat antworten Zitat