L
lucky9805
Unregistered / Unconfirmed
GUEST, unregistred user!
我使用delphi写了一个dll,其过程定义为
procedure showform;stdcall;
var
tmpform:Tform1;
begin
tmpform:=Tform1.Create(nil);
tmpform.show;
end;
并且已经uses sharemem;
我在vb中调用是这样的,先在模块中声明
option explicit
Declare Sub showform lib "mydll.dll" ()
然后在form中调用
Sub button1_click()
showform
end Sub
运行没有错误,但在关闭主窗体时出现错误,提示我0x00000000内存不能为read,我要怎么做,请高手指教
procedure showform;stdcall;
var
tmpform:Tform1;
begin
tmpform:=Tform1.Create(nil);
tmpform.show;
end;
并且已经uses sharemem;
我在vb中调用是这样的,先在模块中声明
option explicit
Declare Sub showform lib "mydll.dll" ()
然后在form中调用
Sub button1_click()
showform
end Sub
运行没有错误,但在关闭主窗体时出现错误,提示我0x00000000内存不能为read,我要怎么做,请高手指教