在主程序中动态调用中如何判断是否有调用dll文件,求救 ( 积分: 50 )

  • 主题发起人 主题发起人 discovered
  • 开始时间 开始时间
D

discovered

Unregistered / Unconfirmed
GUEST, unregistred user!
在主程序中如何判断是否有调用dll文件,求救

分别有两个DLL文件,在这两个dll文件中各封装了一个form,在主程序中的两个按钮分别调用这两个DLL文件,请问我如何知道点下按钮后是否已调用这个DLL文件,如果没调用就调用,如果调用了其它的dll,则释放,再调出相应的dll文件
 
最简单的就是做一个标识(变量),在按钮事件中每次调用 Dll 就给标识赋相应的值。
 
有没有直接判断有没有调用dll文件,如果调用先释放,再调用另一dll??
 
帮帮我呀,没有人知道吗?
 
var
HM : Cardinal;
begin
HM := GetModuleHandle(PChar('XXX.DLL'));
if HM <> 0 then //找到这个模块
begin
FreeLibrary(HM)
end;

end;
 
因为是我dll中的form 是嵌上主程序的一个panel上的,动态调用dll如果卸载的话,是可以手动把DLL文件删除的,可是我象楼上这样,却不能删除,提示DLL文件还在使用中.
 
你肯定要先释放Form什么的DLL里面申请的资源.要不DLL是卸载不掉的.难道还要我给你写代码
 
就一个form的调用呀,放了几个控件,没用到什么资源呀
dll 文件
library Pdll1;

{ 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
ShareMem,
Windows,
SysUtils,
Classes,
Controls,
ExtCtrls,
Udll1 in 'Udll1.pas' {Form1},
Udata in 'Udata.pas' {DataModule1: TDataModule};

{$R *.res}
function Createform(PCtrl : TWinControl): Boolean;safecall;stdcall;
begin
if pctrl <> nil then
begin
Form1 := TForm1.Create(PCtrl);
Form1.ParentFont := False;

Form1.ParentWindow := PCtrl.Handle;
SetActiveWindow(PCtrl.Handle);
Form1.Show;
end;
end;

procedure getform1;stdcall;
begin
form1.Close;
end;
exports
Createform,//2.函数输出口定义
getform1;
begin
end.
------dll 里面的form 文件
unit Udll1;

interface

uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, DB, ADODB, StdCtrls,ShareMem, ActiveX,Grids, DBGrids, ComCtrls;

type
TForm1 = class(TForm)
Edit1: TEdit;
ADOConnection1: TADOConnection;
ADOQuery1: TADOQuery;
DataSource1: TDataSource;
DBGrid1: TDBGrid;
Button1: TButton;
Edit2: TEdit;
procedure Button1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;

var
Form1: TForm1;
implementation
{$R *.dfm}

procedure TForm1.Button1Click(Sender: TObject);
begin
adoquery1.Close;
adoquery1.sql.Text := 'select * from folder_user ';
adoquery1.Open;
end;



initialization
CoInitialize(nil);
finalization
CoUnInitialize;
end.
 
wr960204说得很清楚了,我觉得
Form1.Show;
窗体都显示出来了,能释放掉吗?
 
form如果不嵌在主程序中,我手动close掉dll中的form是可以删除相应的Dll文件
 
没有人知道吗?跪求大家啦
 
后退
顶部