I have a base class (CAHG.
vb) that contains a modular collection variable (mCurMembers). A sub routine (GetEligibility) within the base class populates this collection.
I also have a new class (CVendor.
vb) that inherits the base class and also has 5 new modular collection variables (i.e mRobinsonMembers). There is a sub routine in CVendor that calls GetEligibility which in turn populates mCurMembers.
What I would like to do is create a local variable in the subroutine that is a reference to the appropriate collection object in CVendor. I then want to set this reference object equal to mCurMembers in order to copy the content over.
Any ideas? Passing in a variable byref is not an option. Thanks in advance.