Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
The item specified for the event argument to AddHandler or RemoveHandler is not recognized as an event.
Error ID: BC30677
To correct this error
Specify the name of the object that raises the event followed by a dot (.) and the event name as in the following example.
' Assume that the class Wobject has an event named ThisEvent. Dim wObj As New Wobject ' Assume that this class has as method named ThisEventHandler. AddHandler wObj.ThisEvent, AddressOf Me.ThisEventHandler