Delphi-PRAXiS

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   Sonstige Fragen zu Delphi (https://www.delphipraxis.net/19-sonstige-fragen-zu-delphi/)
-   -   Delphi Form als Plugin (https://www.delphipraxis.net/89215-form-als-plugin.html)

ebber 27. Mär 2007 15:39


Form als Plugin
 
Hallo

ich möchte für mein Programm eine Art Pluginsystem machen. Jeder Plugin soll dabei einfach seine eigene Form haben, die wie jede andere in einem Programm arbeiten kann.

1. Wäre das möglich ?
2. Wäre das einfach ?
3. Wenn ja, wie geht das ungefähr ?

MfG

SirThornberry 27. Mär 2007 15:58

Re: Form als Plugin
 
1.) Ja
2.) Jain (Wenn man nicht ganz unerfahren in Sachen Delphi ist dann Ja)
3.) Einfach ein neues DLL-Projekt -> darin ein Form erstellen -> im Initialization Teil der Form Unit eine Instanz des Forms erzeugen, im Finalization-Teil der Form Unit das Form frei geben und eine Funktion exportieren welche das Form anzeigt.

ebber 27. Mär 2007 16:11

Re: Form als Plugin
 
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

SirThornberry 27. Mär 2007 16:16

Re: Form als Plugin
 
ein Resulttype gibt es da nicht. Form1.Show zeigt es einfach an und fertig!
erzeugen und zerstören geht so:
Delphi-Quellcode:
unit uForm1;

interface

uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs;

type
  TForm1 = class(TForm)
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  Form1: TForm1;

implementation

{$R *.dfm}
initialization
  Form1 = TForm1.Create(nil);

finalization
  Form1.Free;

end.

Pfoto 27. Mär 2007 16:21

Re: Form als Plugin
 
Hi!

es gibt hier im Forum schon einige Beiträge über Forms + PlugIns,
ein gutes Tutorial, woraus ich gelernt habe, ist z.B. hier.
Hier lernt man auch, wie man mit der Hauptanwendung interagieren kann.

Gruß
Pfoto

ebber 27. Mär 2007 17:23

Re: Form als Plugin
 
Danke für die Hilfe,
aber ich glaube ich habe gesehen das mir das noch zu kompliziert ist. Werde ich das wohl noch um eine lange, lange Zeit verschieben müssen.

MfG


Alle Zeitangaben in WEZ +1. Es ist jetzt 12:57 Uhr.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024 by Thomas Breitkreuz