Mouse pointer location

seanvoth

Well-known member
Joined
Aug 5, 2006
Messages
58
Programming Experience
1-3
i have a a lable and when the mouse enters it a msgbox pops up

and i what it to put the mouse pointer in a location i want :confused: :D :( :eek:
 
set System.Windows.Forms.Cursor.Position
 
Position is a property of type Point. Create a new Point and assign it to the property and you will be fine.
 
Back
Top