📄 launchmod.bas
字号:
Attribute VB_Name = "LaunchMod"
Public Sub Pause(PauseTime As Double) ' waits
Dim StartTime As Double
StartTime = Timer
Do While Timer < PauseTime + StartTime
DoEvents
Loop
End Sub
Public Sub ThisDir() ' changes the dir to this dir
ChDrive App.Path
ChDir App.Path
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -