AGB  ·  Datenschutz  ·  Impressum  







Anmelden
Nützliche Links
Registrieren
Thema durchsuchen
Ansicht
Themen-Optionen

Form als Plugin

Ein Thema von ebber · begonnen am 27. Mär 2007 · letzter Beitrag vom 27. Mär 2007
Antwort Antwort
ebber

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

Form als Plugin

  Alt 27. Mär 2007, 15:39
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
  Mit Zitat antworten Zitat
Benutzerbild von SirThornberry
SirThornberry
(Moderator)

Registriert seit: 23. Sep 2003
Ort: Bockwen
12.235 Beiträge
 
Delphi 2006 Professional
 
#2

Re: Form als Plugin

  Alt 27. Mär 2007, 15:58
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.
Jens
Mit Source ist es wie mit Kunst - Hauptsache der Künstler versteht's
  Mit Zitat antworten Zitat
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
Benutzerbild von SirThornberry
SirThornberry
(Moderator)

Registriert seit: 23. Sep 2003
Ort: Bockwen
12.235 Beiträge
 
Delphi 2006 Professional
 
#4

Re: Form als Plugin

  Alt 27. Mär 2007, 16:16
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.
Jens
Mit Source ist es wie mit Kunst - Hauptsache der Künstler versteht's
  Mit Zitat antworten Zitat
Pfoto

Registriert seit: 26. Aug 2005
Ort: Daun
541 Beiträge
 
Turbo Delphi für Win32
 
#5

Re: Form als Plugin

  Alt 27. Mär 2007, 16:21
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
Jürgen Höfs
  Mit Zitat antworten Zitat
ebber

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

Re: Form als Plugin

  Alt 27. Mär 2007, 17:23
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
  Mit Zitat antworten Zitat
Antwort Antwort


Forumregeln

Es ist dir nicht erlaubt, neue Themen zu verfassen.
Es ist dir nicht erlaubt, auf Beiträge zu antworten.
Es ist dir nicht erlaubt, Anhänge hochzuladen.
Es ist dir nicht erlaubt, deine Beiträge zu bearbeiten.

BB-Code ist an.
Smileys sind an.
[IMG] Code ist an.
HTML-Code ist aus.
Trackbacks are an
Pingbacks are an
Refbacks are aus

Gehe zu:

Impressum · AGB · Datenschutz · Nach oben
Alle Zeitangaben in WEZ +1. Es ist jetzt 05:36 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