Search
Module:
Directory

   Desktop Functions:

   Smart Device Functions:


Show Recent Changes
Subscribe (RSS)
Misc. Pages
Comments
FAQ
Helpful Tools
Playground
Suggested Reading
Website TODO List
Download Visual Studio Add-In

Search Results for "SetCursorPos" in [All]

coredll

.

    static extern bool SetCursorPos(int X, int Y);

.

Declare Function SetCursorPos Lib "coredll.dll" (TODO) As TODO

.
Documentation
[SetCursorPos] on MSDN

user32

.

    static extern bool SetCursorPos(int X, int Y);

.

            SetCursorPos(point.X + x, point.Y + y);

.
Summary
.

static extern bool SetCursorPos(int x, int y);

.

Declare Auto Function SetCursorPos Lib "user32.dll" (ByVal x As Integer, ByVal y As Integer) As Integer

.

Private Shared Function SetCursorPos(ByVal X As Integer, ByVal Y As Integer) As Boolean

.

    static extern bool SetCursorPos(int x, int y);

.

            SetCursorPos(point.X + x, point.Y + y);

.
Documentation
[SetCursorPos] on MSDN
.
Summary
.

static extern bool SetCursorPos(int x, int y);

.

Declare Auto Function SetCursorPos Lib "user32.dll" (ByVal x As Integer, ByVal y As Integer) As Integer

.

Private Shared Function SetCursorPos(ByVal X As Integer, ByVal Y As Integer) As Boolean

.

    static extern bool SetCursorPos(int X, int Y);

.

            SetCursorPos(point.X + x, point.Y + y);

.
Documentation
[SetCursorPos] on MSDN

 
Access PInvoke.net directly from VS: