VB Code:
Private Sub lblFull_MouseDown(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles lblFull.MouseDown lblFull.ForeColor = Color.Orange Me.PopMe.Show(Me, New Point(e.X, e.Y)) End Sub
When i Press lblFull my menu will popup on the top of the form, but i need it to popup on the point i pressed the label...
How can i do that?




Reply With Quote