我现在用VC写了COM,现在用VB测试
其中有这段一段程序
VC:
struct{
int a;
int b;
}TEMP;
TEMP temp;
setfile(temp);
VB:
type TEMP
a as integer
b as integer
end type
TEMP temp
setfile(temp)
函数不用使用,注意是COM组件
...全文
244打赏收藏
关于自定义类型的调用?急
我现在用VC写了COM,现在用VB测试 其中有这段一段程序 VC: struct{ int a; int b; }TEMP; TEMP temp; setfile(temp); VB: type TEMP a as integer b as integer end type TEMP temp setfile(temp) 函数不用使用,注意是COM组件