程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> Delphi >> 調用DLL文件中的FORM

調用DLL文件中的FORM

編輯:Delphi
調用DLL文件中的FORM,具體實現過程如下:
  
library Project1;

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

{$R *.res}
function showform(formname:string):boolean;stdcall;
var
  TheClass: TPersistentClass;
  aForm: TForm;
begin
 result:=false;
 {如果您的Dll中有很多FORM,請在這兒注冊哦
 RegisterClasses([TForm1,TForm2,TForm3,...]);
 }
 RegisterClasses([TForm1]);
 TheClass := GetClass('T' + FormName);
 if (TheClass = nil) then   exit;
 if TheClass.InheritsFrom(TForm)  then
 begin
    aForm := Tform(TheClass.Create).Create(nil);
    try
      aForm.ShowModal;
      result:=true;
    finally
      FreeAndNil(aForm);
    end;

 end;
end;

exports
showform;
begin
end.

  

  
....


procedure  RunDllForm(const DllFileName,DllFormName:String;const methodName:string);
type
TRunForm=function(formname:string):boolean;stdcall;
var
  RunForm: TRunForm;
  GetDllHWND: HWND;
begin
  GetDllHWND := LoadLibrary(PChar(DllFileName));
  try
    if GetDllHWND < 32 then
    begin
      MessageBox(0, Pchar('沒有找到'+DllFileName+'DLL文件!'),'加載DLL失敗', MB_OK);
      Exit;
    end;
    @RunForm := GetProcAddress(GetDllHWND,pchar(methodName));
    if @RunForm <> nil then
       try
         RunForm(DllFormName);
       except
         raise Exception.Create('對不起,找不到T' + DllFormName+ '窗體!');
       end
     else
     raise Exception.Create('無效的方法名調用');
  finally
    FreeLibrary(GetDllHWND);
  end;
end;

procedure TForm1.Button1Click(Sender: TObject);
begin
RunDllForm('project1.dll','form1','showform');
end;


....

  

  

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved