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()
The ShowCursor API
8/14/2014 1:08:58 AM - -89.105.157.184
Click to read this page
4/6/2008 7:23:14 AM - anonymous
ByVal is a VB keyword that specifies a variable to be passed as a parameter BY VALUE. In other words, if the function or sub changes the value of the internal variable, it does not change the value of the external variable that was passed to it.
4/25/2007 3:19:55 AM - josep1er@cmich.edu-141.209.229.179