CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Sep 1999
    Posts
    11

    How to hide mouse cursor?

    Hi,
    I wish to write an application (say a small dialog box in VC++), which should also make
    the mouse cursor disappear, untill a mousemove.
    I'm able to make it work, with in my dialog box, But not for the other windows present already.
    Can any one help?

    Ways tried:
    ShowCursor(FALSE);

    SetCursor(NULL);

    Can anyone help?

    Srikrishnan S




  2. #2
    Join Date
    Jun 1999
    Location
    Canada - Québec
    Posts
    273

    Re: How to hide mouse cursor?

    you can try with SetSystemCursor();
    but i dont know how you will be able to know when the mouse move... (if it is not on you dialog..)


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