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:

Please add some!

Alternative Managed API:

System.Windows.Forms.Cursor.Hide()

Documentation
ShowCursor on MSDN