Visual Basic 2008: How do I get an array/collection of objects with events?
Arrays can't be declared WithEvents, and I can't find a way of declaring a collection of a specifc object, so collections can't be WithEvents.
I have made an object called Document, which has various events. I want to have a set of these Documents, and to be able to handle events from each Document, refering to each by an index or a key value. How do I do this?
|