Nov 8, 2005 #1 ashishraj14 Programmer Joined Mar 1, 2005 Messages 92 Location AU how can i change coordinates of the mouse programmatically? thanks
Nov 9, 2005 #2 Ruffnekk Programmer Joined Aug 2, 2005 Messages 249 Location DE Code: Dim x As Integer = 0 Dim y As Integer = 0 System.Windows.Forms.Cursor.Position = New Point(x, y) The above code is self-explanatory.. it sets the mouse cursor at 0,0 on the screen (topleft). Regards, Ruffnekk --- Is it my imagination or do buffalo wings taste just like chicken? Upvote 0 Downvote
Code: Dim x As Integer = 0 Dim y As Integer = 0 System.Windows.Forms.Cursor.Position = New Point(x, y) The above code is self-explanatory.. it sets the mouse cursor at 0,0 on the screen (topleft). Regards, Ruffnekk --- Is it my imagination or do buffalo wings taste just like chicken?