自从Windows 95以后,微软提供了一个很好玩的API,让“桌面主题”等程序可以很方便地更换系统光标。我们这些恶作剧者可闲不住,马上用这个API把系统光标全替换为一张透明图片,从而让鼠标消失。
  先将作案工具声明一下: Private Declare Function SetSystemCursor Lib "user32" (ByVal hcur As Long, ByVal id As Long) As Long   然后创建一个Form,放一个Image1,将Picture设为一张透明的光标。接着双击Form1,为它的Form_Load写以下代码。 Private Sub Form_Load() For i% = 32512 To 32516 SetSystemCursor Image1.Picture, i% Next i% For i% = 32640 To 32650 SetSystemCursor Image1.Picture, i% Next i% End End Sub   运行一下,鼠标不见了吧?哈哈哈!
  为了方便你捣乱,我特意提供免安装版,下载去干坏事吧!