showcursor (user32)
Last changed: -89.105.157.184

.
Summary

C# Signature:

[DllImport("user32.dll")]
static extern int ShowCursor(bool bShow);

VB.Net Signature:

<DllImport("user32.dll", CharSet:=CharSet.Auto, ExactSpelling:=True)> _
Public Shared Function ShowCursor(ByVal bShow As Boolean) As Integer

User-Defined Types:

None.

Notes:

The ShowCursor function displays or hides the cursor.

bShow

    [in] Specifies whether the internal display counter is to be incremented or decremented. If bShow is TRUE, the display count is incremented by one. If bShow is FALSE, the display count is decremented by one.

Tips & Tricks:

Please add some!

Sample Code:

ShowCursor(False) 'Hide Cursor
Threading.Thread.Sleep(5000) 'Wait 5 Seconds
ShowCursor(True) 'And show it again

Alternative Managed API:

System.Windows.Forms.Cursor.Hide()

Documentation
ShowCursor on MSDN