Hi Elya,
In unit A you should create a function that returns an instance of the class and call this function from unit B.
E.g.
' unit A
Function InitClass()
Set InitClass = new MyClass
End Function
class MyClass
'properties and methods
End Class
'unit B
...
Set vClass = Function InitClass()
vClass.Property = ...
intResult = vClass.Function(...)
...
Regards,
/Alex [Community Hero]
____
[Community Heroes] are not employed by SmartBear Software but
are just volunteers who have some experience with the tools by SmartBear Software
and a desire to help others. Posts made by [Community Heroes]
may differ from the official policies of SmartBear Software and should be treated
as the own private opinion of their authors and under no circumstances as an
official answer from SmartBear Software.
The [Community Hero] signature is used with permission by SmartBear Software.
https://community.smartbear.com/t5/custom/page/page-id/hall-of-fame
================================