📄 errorflags.bas
字号:
Attribute VB_Name = "Flags"
Public Sub p_ErrorHandler()
'if an error occurs then capture it and show the description of the error.
If m_iIgnoreAllErrorsFlag = 1 Then
Exit Sub
Else
Dialog.lblErrorDescription.Caption = Err.Description
Dialog.Show vbModal, Batchelor
End If
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -