Page 1 of 1

mouse move?

Posted: Tue Apr 27, 2010 5:34 am
by Livengood
how would you move your mouse with coding in visual basic 2008?
been trying to find this out for awhile wahooo;

Re: mouse move?

Posted: Tue Apr 27, 2010 3:00 pm
by CodenStuff
You can set the location/possition of the mouse cursor using:
Code: Select all
Cursor.Position = New Point(100, 100)

Re: mouse move?

Posted: Wed Apr 28, 2010 5:42 am
by Livengood
Thanks CodenStuff :)