VB Code:
  1. Private Sub lblFull_MouseDown(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles lblFull.MouseDown
  2.         lblFull.ForeColor = Color.Orange
  3.         Me.PopMe.Show(Me, New Point(e.X, e.Y))
  4.     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?