TheRealAmaD
Technical User
Right 'ho,
I've been on MSDN etcetera and I found that the code (albeit very simple ) To move the cursor on screen is:
BOOL SetCursorPos(
int X,
int Y
);
And so I made an application with the following code half expecting it to work:
#include <iostream>
using namespace std;
int main()
{
return 0;
}
BOOL SetCursorPos(
int 400,
int 500
);
As you can see, this script has no structure, no anything, and the author has no clue
All I want to do is move the cursor to that position (and after the initial move, probably more)
Can anyone help me please
I've been on MSDN etcetera and I found that the code (albeit very simple ) To move the cursor on screen is:
BOOL SetCursorPos(
int X,
int Y
);
And so I made an application with the following code half expecting it to work:
#include <iostream>
using namespace std;
int main()
{
return 0;
}
BOOL SetCursorPos(
int 400,
int 500
);
As you can see, this script has no structure, no anything, and the author has no clue
All I want to do is move the cursor to that position (and after the initial move, probably more)
Can anyone help me please