B
Bruce
I am a C++ programmer so sorry for the simple VB question.
If I have two instances of the same type of object, how do I make the
value of one equal to the other?
If I do
Dim ObjA as new MyObject
Dim ObjB as new MyObject
ObjA = ObjB
then ObjA is set to the same instance as ObjB.
How do I just make the values equal? Do I need a CopyTo method for the
object?
If I have two instances of the same type of object, how do I make the
value of one equal to the other?
If I do
Dim ObjA as new MyObject
Dim ObjB as new MyObject
ObjA = ObjB
then ObjA is set to the same instance as ObjB.
How do I just make the values equal? Do I need a CopyTo method for the
object?