Does anyone know how to store the mouse position?
Example , VB Code: Private loc As Point Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click loc = New Point(Me.MousePosition.X, MousePosition.Y) End Sub
Private loc As Point Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click loc = New Point(Me.MousePosition.X, MousePosition.Y) End Sub
Thanks for that. it will prove most helpful
Forum Rules