Link to home
Start Free TrialLog in
Avatar of Jos te Braake
Jos te BraakeFlag for South Africa

asked on

Checking references in VBA

Having created a class to contain attributes of references in a VBA Excel application, I now want to call another procedure which needs to list the contents of my class. How do I do that? I can include my class variable in the procedure call, but I have to redeclare them as new instances of the class. That wipes out the contents of the class. So how can I avoid the wiping out of my information and being able to utilise the contents of the class elsewhere in my programme?
ASKER CERTIFIED SOLUTION
Avatar of darbid73
darbid73
Flag of Germany image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Jos te Braake

ASKER

Thank you darbid73. You have solved my problem.