errorflags.bas

来自「bartender专业条码软件的VB二次开发」· BAS 代码 · 共 13 行

BAS
13
字号
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 + =
减小字号Ctrl + -
显示快捷键?