VB.NET | Mouse Pointer Saklama

1Jeff

Developer & Coder
Ultra Member
Joined
Oct 20, 2019
Messages
720
Reaction score
443
Location
Helsinki
Code:
Bu is için ShowCursor API'si kullanilir. Asagidaki kodu bir module içine yaz:

Declare Function ShowCursor Lib "user32" (ByVal bShow
As Long) As Long

Bu kod mouse imlecini saklar:
FareImleci = ShowCursor(False)

Bu kod mouse imlecini görünür hale getirir:
FareImleci = ShowCursor(True)
 

Top