|
-
Feb 1st, 2000, 05:31 PM
#1
Thread Starter
Junior Member
this has prolly been asked a bazillion times, but what is the simplest what to move the mouse cursor (dont be a smarta$$ and say use the mouse) :P
-
Feb 1st, 2000, 11:52 PM
#2
You can use SetCursorPos API.
Code:
Private Declare Function SetCursorPos Lib "user32" (ByVal X As Long, ByVal Y As Long) As Long
Then using this API you would have pass 2 parameters X and Y.
SetCursorPos 500, 500
------------------
Serge
Programmer Analyst
[email protected]
[email protected]
ICQ#: 51055819
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|