members of collection

S

Sam

I have some classes defined by another programmer. The class defines a custom
collection. In debugging, I need to see the members of the collection. How
can I do that?
Thanks,
Sam
 
T

Tom van Stiphout

On Sun, 9 Aug 2009 14:16:01 -0700, Sam <[email protected]>
wrote:

Something like this:
dim m as myMemberOfCollection
for each m in myCollection
debug.print m.myProperty1, m.myProperty2
next
(of course you replace myObjectNames with yours)

-Tom.
Microsoft Access MVP
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top