ok this really seems like a simple problem but i cannot figure it out for the life of me. when i add a button to my form i want to be able to double click that button and have it perform an action. but for some reason i can not enter into the doubleclick handle when i double click on the button. for example when i double click on the button i would expect the below code to work but it does not. any ideas?
-------------
-------------
-------------
Code:
Private Sub btnWTF_DoubleClick(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnWTF.DoubleClick
MsgBox("hello world")
End Sub