Reputation: 18305
A bit odd maybe, but how can I move the cursor using code in vb.net? I can't seem to find the proper method.
This is in vb.net
Upvotes: 8
Views: 31752
Reputation: 4806
You may use:
Windows.Forms.Cursor.Position = New Point(x, y)
Upvotes: 18