How to implement custom iterable class in VBA

The long and short of it is you can’t implement IUnknown. The same goes for Collection. They’re both Com objects that are unavailable for extension in VBA. You can create custom collections and do other very cool iterable things though.

Leave a Comment