|
ShowCursor The ShowCursor function displays or hides the cursor. VB4-32,5,6 Declare Function ShowCursor Lib "user32" Alias "ShowCursor" (ByVal bShow As Long) As Long |
VB.NET System.Windows.Forms.Cursor.Current.Show;System.Windows.Forms.Cursor.Current.Hide |
Operating Systems Supported |
Requires Windows NT 3.1 or later; Requires Windows 95 or later |
· bShow 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. |
The return value specifies the new display counter. |
|
|
|