tags:

views:

91

answers:

1

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.....thanks for the help!

This is in vb.net

+6  A: 

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

David Rutten
Wow, how'd I miss that? Thanks so much!!!! Jeez, that was easy lol...
Cyclone