E
eastnet
Unregistered / Unconfirmed
GUEST, unregistred user!
我用ReportMachine3.0做在一个DLL里,供其他程序调用,
每次退出主程序时都要提示DLL里的一个form应用程序错误:
"0x00633dea"指令引用的"0x0134ee14"内存。该内存不能为"read".
DLL的函数是这样声明的:
procedure PrintW(H: THandle;remotedbconn,writsort,filecode,other:string);
在最后调用的form的onclose里释放:
if not assigned(DM) then
DM.Free;
if not assigned(RMRepSrc) then
RMRepSrc.Free;
//这个窗口存放一些rm的相关资源文件
调用方法如下:
PrintW(Application.Handle,remotedbconn,'writ2',callfcode(IsEmpWrt),'0');
可退出时就是报错,不知怎么解决?
每次退出主程序时都要提示DLL里的一个form应用程序错误:
"0x00633dea"指令引用的"0x0134ee14"内存。该内存不能为"read".
DLL的函数是这样声明的:
procedure PrintW(H: THandle;remotedbconn,writsort,filecode,other:string);
在最后调用的form的onclose里释放:
if not assigned(DM) then
DM.Free;
if not assigned(RMRepSrc) then
RMRepSrc.Free;
//这个窗口存放一些rm的相关资源文件
调用方法如下:
PrintW(Application.Handle,remotedbconn,'writ2',callfcode(IsEmpWrt),'0');
可退出时就是报错,不知怎么解决?