错误424:调用外部库时所需的对象

时间:2014-10-18 23:06:25

标签: vba

我正在编写一个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附加到变量赋值来修复;但是,这里发生了同样的错误。

1 个答案:

答案 0 :(得分:0)

除了上述行为之外,尝试从VBA调用.NET函数时发生错误424。这不是VBA能够做到的。