members of collection

  • Thread starter Thread starter Sam
  • Start date Start date
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
 
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
 
Back
Top