在vba中两个类模块之间传递信息的最佳方法是什么?
我认为我理解了属性集声明,但不知道如何连接两个类。
答案 0 :(得分:0)
您可以像在其他代码中一样使用它们。
Dim variableName As className
Set variableName = New className
variableName.someMethod
Set variableName = Nothing
我发现Chip Pearson's web site非常有用。以下是一些特定于您的问题的链接:
Classes in VBA
Custom Collection Classes
如果您有相互引用的对象,则需要小心。 This page解释它即使它是在谈论经典的VB。页面上提到的Deallocate
方法有效。