怎样在VBA中调用C#写成的DLL
发布网友
发布时间:2022-04-20 17:33
我来回答
共2个回答
热心网友
时间:2023-06-22 22:36
似乎用函数更好一些
热心网友
时间:2023-06-22 22:36
两种方法:
1、x设为全局变量:
dim x as integer
sub a()
x=1
b
x=10
c
end sub
sub b()
......
end sub
sub c()
......
end sub
2、x作为过程参数:
sub a()
b 1
c 10
end sub
sub b(x)
......
end sub
sub c(x)
......
end sub