Tuesday, 15 November 2011
Home »
Tips and Trick Delphi
» Tricks to hide the cursor in our application. This technique is often used in making a screen saver.
Tricks to hide the cursor in our application. This technique is often used in making a screen saver.
To Share | Tuesday, 15 November 2011
To hide use the function:
ShowCursor (False);
Meanwhile, to display it again using the function:
ShowCursor (True);
No comments:
Post a Comment