how to steer a cursor ?

  • Thread starter Thread starter Jarod
  • Start date Start date
J

Jarod

Hello
How to change a position of mouse pointer in VB.net ? I
would like to change his position by pressing arrow keys.
Jarod
 
Jarod said:
Hello
How to change a position of mouse pointer in VB.net ? I
would like to change his position by pressing arrow keys.
Jarod

Have a look at the events Keydown, Keyup, Keypress. To move the cursor:
Cursor.Position = New Point(100, 100)
 
Hi Jarod,

Have a look at the Cursor class and its Position property.

Regards,
Fergus
 
* "Jarod said:
How to change a position of mouse pointer in VB.net ? I
would like to change his position by pressing arrow keys.

Set the 'Cursor.Position' property.
 
Back
Top