L
lliuxxingw
Unregistered / Unconfirmed
GUEST, unregistred user!
在delphi中创建一个com 方法:1> New->ActiveX->Automation Object ; 2>New->ActiveX->Com Object(name : ComTest) ; 3>XX_TLB中增加一个method , addint(v1,v2 : integer)
其实现为
function TCOMTest.AddInt(v1, v2: Integer): Integer;
begin
Result := v1 + v2 ;
end; ;然后运行得到的是一个ComTest.dll文件,现在想测试在VC中调用,请问怎么去写呢,希望能写出调用的代码,因为对VC不是很熟悉,先谢谢大家。
其实现为
function TCOMTest.AddInt(v1, v2: Integer): Integer;
begin
Result := v1 + v2 ;
end; ;然后运行得到的是一个ComTest.dll文件,现在想测试在VC中调用,请问怎么去写呢,希望能写出调用的代码,因为对VC不是很熟悉,先谢谢大家。