Pelles C forum

C language => Beginner questions => Topic started by: rob on January 03, 2007, 09:59:34 PM

Title: Hiding the cursor
Post by: rob on January 03, 2007, 09:59:34 PM
Is there a way to hide the cursor? I found how to change what it looks like but not how to hide it.
Title: Hiding the cursor
Post by: CLR on January 03, 2007, 10:13:01 PM
Hi.

http://msdn.microsoft.com/library/default.asp?url=/library/en-us/winui/winui/windowsuserinterface/resources/cursors/cursorreference/cursorfunctions/showcursor.asp
Title: Hiding the cursor
Post by: rob on January 03, 2007, 11:29:03 PM
Thanks. I'm trying the make it so the cursor is hidden inside the client area of the window and shown outside the client area, but it's not working correctly. My code looks like this:

case WM_NCMOUSELEAVE:
ShowCursor(FALSE);
break;
case WM_NCMOUSEMOVE:
ShowCursor(TRUE);
break;
case WM_MOUSEMOVE:
ShowCursor(FALSE);
break;


Edit: I noticed it works, but theres about a 1 second delay. Any ideas on how to fix this would be appreciated.