Hiding the mouse cursor
If you want to temporarily hide the cursor in your application, you can use this code:
Author: Donovan OlivierDeclare Function ShowCursor Lib "User" (ByVal bShow As Integer) As Integer Dim lReturn As Long ' To hide the cursor: Do lReturn = ShowCursor(False) Loop Until lReturn < 0 ' To show the cursor: Do lReturn = ShowCursor(True) Loop Until lReturn >= 0 |
||
Editor: Donovan Olivier Last update: 2024-11-23 Copyright 1995-2024 VBI |