CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3

Thread: web page

  1. #1
    Join Date
    Dec 2009
    Posts
    8

    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 ?

  2. #2
    Join Date
    Apr 2004
    Posts
    102

    Re: web page

    problem is to move a mouse to position that i can type text ?
    Try using SetCursorPos.

  3. #3
    Join Date
    Dec 2009
    Posts
    8

    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
  •  





Click Here to Expand Forum to Full Width

Featured