T
Tom L
HOW?
It seems no matter what I do, it always does a reference to the originating
object. Even if I pass the object through a function, then create a "new"
one via Dim x as New someobject and then return x, it still sets a
reference - so then if I change a property in x it sets the original object.
The only solution I've found so far seems so tedious and ridiculous, which
is I have to copy each property individually, since copying a property
copies the value, and doesn't set a reference.
It seems no matter what I do, it always does a reference to the originating
object. Even if I pass the object through a function, then create a "new"
one via Dim x as New someobject and then return x, it still sets a
reference - so then if I change a property in x it sets the original object.
The only solution I've found so far seems so tedious and ridiculous, which
is I have to copy each property individually, since copying a property
copies the value, and doesn't set a reference.