Is there a generic way to clone objects in VBA? So that i could copy x to y instead of copying just the pointer?
Dim x As New Class1 Dim y As Class1 x
Scott Whitlock has posted a fantastic answer to this problem on another question.