C
CDM
Is it possible to pass a class module as an argument and set up a 'For Each'
that loops through each of the properties? I'm not sure how to reference the
property.
For example:
Private Sub LoadClass(mdl as module)
Dim prp as property 'Not sure this is possible
for each prp in mdl.properties
prp = [something]
next
This assumes I have dimmed a new class module in the calling procedure.
thanks for any help you can offer.
that loops through each of the properties? I'm not sure how to reference the
property.
For example:
Private Sub LoadClass(mdl as module)
Dim prp as property 'Not sure this is possible
for each prp in mdl.properties
prp = [something]
next
This assumes I have dimmed a new class module in the calling procedure.
thanks for any help you can offer.