G
Guest
I have VB6 DLL that contains a Time class. In the time class a timer event is
defined.
The event is declared as:
Public Event Timer(ByVal sKey As String)
And is called with:
RaiseEvent Timer("somestring")
When I instantiate the Time class in my C# application, the Timer event
shows up as an event inside the class. My question is how do I connect/handle
this event in my C# application.
Any help would be greatly appreciated!
defined.
The event is declared as:
Public Event Timer(ByVal sKey As String)
And is called with:
RaiseEvent Timer("somestring")
When I instantiate the Time class in my C# application, the Timer event
shows up as an event inside the class. My question is how do I connect/handle
this event in my C# application.
Any help would be greatly appreciated!