Excel VBA return the same reference from two different objects

guruxyz

New Member
Joined
Feb 6, 2018
Messages
1
I have the following:

CurveCol: A collection of object of type curve
PointsCol: A collection of XY data points associated with the object curve
Cls_Point: is an object containing the xy Data


Sub Get_Initials_At_PXc(p As Integer, Xc As Double)

Dim A As New Cls_Point, B As New Cls_Point

With CurveCol(p)

Set A = .Find_Point_At_Xc(Xc)

End With

With CurveCol(p + 1)

Set B = .Find_Point_At_Xc(Xc)

End With


End Sub

The problem is that when the " Set B" line is executed, the A object reference the B object.

Any Idea why?
 

Excel Facts

Who is Mr Spreadsheet?
Author John Walkenbach was Mr Spreadsheet until his retirement in June 2019.

Forum statistics

Threads
1,215,063
Messages
6,122,935
Members
449,094
Latest member
teemeren

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top