M
Miro
What have I done wrong here.
I use to have a tool strip button called home on my tool strip on the top of
my form.
By double clicking on the button, I got my sub to show as follows.
Private Sub tsbHome_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs)
<code was here ...but is irrelevant>
End Sub
If I look at my form code, the above is still there. But now, if I double
click on my exact same button, it pulls up
a brand new sub. ( below )...totally ignoring the one above. It also put a
_1 on it. The "NAME" property of the
button is still tsbHome.
Private Sub tsbHome_Click_1(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles tsbHome.Click
End Sub
This is happening to a couple of my buttons. Any ideas what I have done
wrong, and what i can do to fix this?
Thanks,
Miro
I use to have a tool strip button called home on my tool strip on the top of
my form.
By double clicking on the button, I got my sub to show as follows.
Private Sub tsbHome_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs)
<code was here ...but is irrelevant>
End Sub
If I look at my form code, the above is still there. But now, if I double
click on my exact same button, it pulls up
a brand new sub. ( below )...totally ignoring the one above. It also put a
_1 on it. The "NAME" property of the
button is still tsbHome.
Private Sub tsbHome_Click_1(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles tsbHome.Click
End Sub
This is happening to a couple of my buttons. Any ideas what I have done
wrong, and what i can do to fix this?
Thanks,
Miro