Moving Thy Cursor...
Posted: February 15th, 2005, 10:39 pm
Right 'ho,
I've been on MSDN etcetera and I found that the code (albeit very simple
) To move the cursor on screen is:
And so I made an application with the following code half expecting it to work:
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'm very new to C++ you see...)

Code: Select all
[i]
[/i]BOOL SetCursorPos(
int X,
int Y
);
Code: Select all
[i]
[/i]#include <iostream>
using namespace std;
int main()
{
return 0;
}
BOOL SetCursorPos(
int 400,
int 500
);

