L
Lou
I have a class named cDevice. I have a Generic Dictionary "Devices" that
holds
many cDevice(s). My cDevice class has callbacks(RaiseEvents).
How can I get callbacks from all the cDevice objects in my dictionary?
I only get one callback because I Do;
Private WithEvents CurrentDevice as cDevice
CurrentDevice=Devices.item(i)
So I only get the callbacks for that one cDevice..CurrentDevice.
How Do I get callbacks for all cDevice in Devices?
-Lou
holds
many cDevice(s). My cDevice class has callbacks(RaiseEvents).
How can I get callbacks from all the cDevice objects in my dictionary?
I only get one callback because I Do;
Private WithEvents CurrentDevice as cDevice
CurrentDevice=Devices.item(i)
So I only get the callbacks for that one cDevice..CurrentDevice.
How Do I get callbacks for all cDevice in Devices?
-Lou