|
-
December 29th, 2009, 03:05 PM
#1
web page
how can i send data to webpage using c ,i know coordinates of mouse:
#include <windows.h>
#include <winuser.h>
#include <stdio.h>
int main()
{
POINT p;
GetCursorPos(&p);
printf("%d%d\n",p.x,p.y);
}
problem is to move a mouse to position that i can type text ?
-
December 29th, 2009, 06:29 PM
#2
Re: web page
problem is to move a mouse to position that i can type text ?
Try using SetCursorPos.
-
December 30th, 2009, 01:47 PM
#3
Re: web page
how can i know that coordinates of rectangle can i receive source code.
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
|