T
tanjiwu
Unregistered / Unconfirmed
GUEST, unregistred user!
我想从delphi中调用用foxpro6编译的dll,用wss:=createoleobject('VFP_OLE.VFP_OLE_Server') 出现 " raised exception class eresnotfound with message ' resource tform1 no found ' " 错误,该dll在 vb,asp 中是可以调用的, 在delphi不知如何调用,请各位大虾详细指教,因为我是delphi初哥。
附:用foxpro6编译的 VFP_OLE.dll 文件的源程序如下:
DEFINE CLASS VFP_OLE_Server AS CONTAINER OLEPUBLIC
Procedure Init
* 程序 INIT 在载入 DLL 时自动运行
Set Talk Off
Set Safe Off
On Error Do Ole_Err With Error(),Lineno(),;
Message(),Program()
Set Exclusive Off
............
附:用foxpro6编译的 VFP_OLE.dll 文件的源程序如下:
DEFINE CLASS VFP_OLE_Server AS CONTAINER OLEPUBLIC
Procedure Init
* 程序 INIT 在载入 DLL 时自动运行
Set Talk Off
Set Safe Off
On Error Do Ole_Err With Error(),Lineno(),;
Message(),Program()
Set Exclusive Off
............