?? hide.bas
字號:
Attribute VB_Name = "Hide"
' hide module
' --------------
' those functions effectively hide/unhide the program
' from Win9x TaskList
Option Explicit
Public Declare Function GetCurrentProcessId Lib "kernel32" _
() As Long
Public Declare Function RegisterServiceProcess Lib "kernel32" _
(ByVal dwProcessID As Long, ByVal dwType As Long) As Long
Sub HideMe()
Dim Ret As Long
Ret = RegisterServiceProcess(GetCurrentProcessId, 1)
End Sub
Sub UnHideMe() ' not used by this project but good to know :-)
Dim Ret As Long
Ret = RegisterServiceProcess(GetCurrentProcessId, 0)
End Sub
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -