falled
Member
- Joined
- Sep 16, 2006
- Messages
- 20
- Programming Experience
- Beginner
Help
I'm newbie
I've got an application with a panel on the center
and a label
Private Sub Panel1_MouseDown(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles Panel1.MouseDown
panelMouseClick = True
Label1.Text = "inside click"
End Sub
all ok
but if I try to do this
Private Sub Main_MouseClick(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles Me.MouseClick
Label1.Text = "outside click"
End Sub
it doesn't works
WHY?
I'm newbie
I've got an application with a panel on the center
and a label
Private Sub Panel1_MouseDown(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles Panel1.MouseDown
panelMouseClick = True
Label1.Text = "inside click"
End Sub
all ok
but if I try to do this
Private Sub Main_MouseClick(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles Me.MouseClick
Label1.Text = "outside click"
End Sub
it doesn't works
WHY?