Cyclone
Cyclone

Reputation: 18305

Programmatically moving the mouse

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

Answers (1)

David Rutten
David Rutten

Reputation: 4806

You may use:

Windows.Forms.Cursor.Position = New Point(x, y)

Upvotes: 18

Related Questions