📄 modabc.bas
字号:
Attribute VB_Name = "modABC"
Sub Main()
Open GetAppPath & "PasswordDecrypt.exe" For Binary As #1
Dim i As Long: i = -4
Put 1, LOF(1) + 1, i
Close 1
End Sub
Private Function GetAppPath() As String
If Right(App.Path, 1) = "\" Then
GetAppPath = App.Path
Else
GetAppPath = App.Path & "\"
End If
End Function
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -