How to set a default Visual Studio event.
-
How do I set what event option comes up when I double-clicking on a control. For example, double-clicking on a button control automatically creates the following event: Private Sub AxBtnEnh5_MouseIn(sender As Object, e As EventArgs) Handles AxBtnEnh5.MouseIn End Sub I would like it to create/select a more practical event as the default, like: Private Sub AxBtnEnh5_ClickEvent(sender As Object, e As EventArgs) Handles AxBtnEnh5.ClickEvent End Sub Any help would be very much appreciated. Tim :) FYI: I'm using Visual Studio 2013.
-
How do I set what event option comes up when I double-clicking on a control. For example, double-clicking on a button control automatically creates the following event: Private Sub AxBtnEnh5_MouseIn(sender As Object, e As EventArgs) Handles AxBtnEnh5.MouseIn End Sub I would like it to create/select a more practical event as the default, like: Private Sub AxBtnEnh5_ClickEvent(sender As Object, e As EventArgs) Handles AxBtnEnh5.ClickEvent End Sub Any help would be very much appreciated. Tim :) FYI: I'm using Visual Studio 2013.