I\'ve written some code to handle an event as follows:
AddHandler myObject.myEvent, AddressOf myFunction
It seemed that everything was work
You may use IsHandleCreated property to check your event already has an handle or not.
IsHandleCreated
If e.Control.IsHandleCreated = False Then AddHandler e.Control.KeyPress, AddressOf TextBox_keyPress End If