对于我的上一个项目,我在我的 delphi 应用程序中使用了许多框架,所以我决定创建 dll 并将它们放入 dll 中(全部在 Delphi 中创建)
我浏览了许多网站并提出了有效的代码,但对于那个例子,我必须使用运行时包编译应用程序和 dll,这意味着我也必须分发 bpls。如果不使用运行时包检查构建错误即将到来
这是我找到的代码
在exe中
procedure TForm1.Button1Click(Sender: TObject);
type
TGetTheFrame =Function( Owner: TComponent; TheParent: TWinControl ): TFrame; stdcall ;
var
GetTheFrame : TGetTheFrame;
begin
try
GetTheFrame(application,TabSheet1).Free ;
except
end;
frm := GetTheFrame(application,TabSheet1) ;
dllHandle := LoadLibrary('project1.dll') ;
if dllHandle <> 0 then
begin
GetTheFrame := GetProcAddress(dllHandle, 'GetTheFrame') ;
frm := GetTheFrame(application,TabSheet1) //call the function
{ ShowMessage('error function not found') ;
FreeLibrary(dllHandle) ; }
end
else
begin
ShowMessage('xxxx.dll not found / not loaded') ;
end
在 dll 中
Function GetTheFrame( Owner: TComponent; TheParent: TWinControl ): TFrame; stdcall;
Begin
Result := TFrame2.Create( Owner );
Result.Parent := TheParent;
End;
就是这样,但我希望这段代码在没有运行时包的情况下工作