肥龍 發表於 2008-12-26 13:01:17

如何隱藏程式行程 , 讓 Ctrl + Alt + Del 看不到!

本帖最後由 肥龍 於 2008-12-26 13:09 編輯

Windows 98 可用API 來做
Private Declare Function GetCurrentProcessId Lib "kernel32" () _
      As Long
Private Declare Function RegisterServiceProcess Lib _
      "kernel32" (ByVal dwProcessID As Long, _
      ByVal dwType As Long) As Long

WinNT , 2K , XP 可直接使用如下方法
App.TaskVisible = False
頁: [1]
查看完整版本: 如何隱藏程式行程 , 讓 Ctrl + Alt + Del 看不到!