Handling Events on Inherited Forms
Hi,
I'm trying to build an event handler for events on a form that I'm inheriting e.g
Private Sub Click_handler(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmd_First.Click, Cmd_Last.Click
On my task list this comes up as "Cannot bind an event handler to the 'Click' event because it is read only"
But the handler still works !
Am I missing something ?
|