📄 moddriver.bas
字号:
Attribute VB_Name = "modDriver"
Option Explicit
Dim m_tagErrInfo As TYPE_ERRORINFO ' 错误信息
Public Sub update_status(ByVal message As String)
On Error Resume Next
'this updates the status window with any new messages
frmServer.status.AddItem "[" & f_time & "] " & message
frmServer.status.ListIndex = (frmServer.status.ListCount - 1)
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -