我正在编写一个VBA宏,并导入了mscorlib.dll以引用System.Math。
Sub draw16mmButtonHole()
Dim test As Double
test = System.Math.ASin(0) 'this is where the error happens
End Sub
显然错误424通常在调用返回对象时发生,并且可以通过将set
附加到变量赋值来修复;但是,这里发生了同样的错误。
答案 0 :(得分:0)
除了上述行为之外,尝试从VBA调用.NET函数时发生错误424。这不是VBA能够做到的。