ShowCursor problem

Started by
0 comments, last by Gandalf 23 years, 9 months ago
I get mad! Everytime I try to use the win32 function ShowCursor() I get strange results. I make a call 2 times in my project. One to show the cursor and one to hide the cursor. But this function is not reliable. Why can´t the cursor do what I want? Gandalf the White
Gandalf the Black
Advertisement
Fix it (simple).

            // SHOW CURSORint iCounter = ShowCursor(TRUE);while(iCounter < 0)iCounter = ShowCursor(TRUE);// HIDE CURSORint iCounter = ShowCursor(FALSE);while(iCounter >= 0)iCounter = ShowCursor(FALSE);            



Edited by - Gandalf on June 22, 2000 10:15:51 AM
Gandalf the Black

This topic is closed to new replies.

Advertisement