I have a class library that i made in C#.NET. The class has a public event, public event EventHandler DataReadyEvent;
that is triggered periodically.
I have a VBA application that creates an instance of this Class Library using CreateObject(...). I can access the methods and properties of the class library easially through COM but I can't seem to get the events to work. Is it possible to trigger events through com? How do I listen for them in VBA?