In VBA, is comparing two objects with the Is
operator the same as comparing their ObjPtr
values?
That is, is this
obj1 Is obj2
... the same as this?
ObjPtr(obj1) = ObjPtr(obj2)
In VBA, is comparing two objects with the Is
operator the same as comparing their ObjPtr
values?
That is, is this
obj1 Is obj2
... the same as this?
ObjPtr(obj1) = ObjPtr(obj2)