I have an object myObj1 of some type myObj. I want to make a copy of myObj1 so I use this code:
Code:
Dim myObj2 As myObj
Set myObj2 = MyObj1
Now, if I modify myObj2 it turns out that myObj1 undergoes the same modification. In other words, the code above is not creating an independent copy of myObj1, rather it's creating a second name for the same object. Does that make sense?