I've got an issue where Public Events in a class aren't being seen outside the class.
Code looks like this:
Public Class Class1 |
Public Event Event1(someargs as object) |
|
Public Sub New() |
'Perform Some Code |
|
RaiseEvent Event1(someargs) |
End Sub |
End Class |
When I put an event handler for Event1 in the Class itself it works just fine, but I can't catch that same event in the Windows Form that instantiated the Class Object. Help?