how can change mouse position ? or how can get mouse icon over button1?
Windows.Forms.Cursor.Current.Position = New System.Drawing.Point(225, 105)
in vb express 2008:
'declare the library function we plan to use: Declare Function SetCursorPos& Lib "user32" (ByVal p As Point)
...
dim p as point p.x = 100 p.y = 200 SetCursorPos p