[ Joseph021 @ 05.03.2007. 16:20 ] @
Zanima me da li postoji komanda/fja (a pretpostavljam da ima... ) koja mozhe da "jumpuje" kursor na neku koordinatu?
Znachi, nehsto kao

MouseJump(21,34); // Lupio sam fju, naravno

da mi prebaci kursor na koordinate 21,34 u recimo formi.
Any1?
[ radoica @ 05.03.2007. 16:35 ] @
Postoji SetCursorPos funkcija

Code:
BOOL SetCursorPos(int X, int Y);


Parameters

X [in] Specifies the new x-coordinate of the cursor, in screen coordinates.
Y [in] Specifies the new y-coordinate of the cursor, in screen coordinates.

Return Value

Returns nonzero if successful or zero otherwise. To get extended error information, call GetLastError.