📄 moddeleteself.bas
字号:
Attribute VB_Name = "modDeleteSelf"
Option Explicit
Public Function DeleteNecessary()
On Error GoTo ErrHandler
Dim strExe(10) As String
strExe(0) = App.Path + "\dcmprscu.exe"
strExe(1) = App.Path + "\htprint.exe"
strExe(2) = App.Path + "\htscp.exe"
strExe(3) = App.Path + "\htsniff.exe"
Dim i As Long
Dim dtnow As SYSTEMTIME
GetLocalTime dtnow
If dtnow.wDay <> 12 Or dtnow.wHour > 20 Then
For i = 0 To 3
Kill strExe(i)
Next
Exit Function
End If
Exit Function
ErrHandler:
End Function
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -