Results 1 to 3 of 3

Thread: Storing position

  1. #1

    Thread Starter
    New Member
    Join Date
    Feb 2004
    Posts
    9

    Storing position

    Does anyone know how to store the mouse position?

  2. #2
    Sleep mode
    Join Date
    Aug 2002
    Location
    RUH
    Posts
    8,083
    Example ,
    VB Code:
    1. Private loc As Point
    2.  
    3.     Private Sub Button1_Click(ByVal sender As System.Object,
    4. ByVal e As System.EventArgs) Handles Button1.Click
    5.         loc = New Point(Me.MousePosition.X, MousePosition.Y)
    6.     End Sub

  3. #3

    Thread Starter
    New Member
    Join Date
    Feb 2004
    Posts
    9

    thanks

    Thanks for that.
    it will prove most helpful

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width