common.bas

来自「vb,agilent 816x vxipnp control library a」· BAS 代码 · 共 18 行

BAS
18
字号
Attribute VB_Name = "Common"Global PWM_Slot As LongGlobal FLS_Slot As LongGlobal IHandle As LongPublic Sub checkStatus(ByVal status)Dim message As String * 256If (status = VI_SUCCESS) Then GoTo Ret:If (status = hp816x_INSTR_ERROR_DETECTED) ThenretStatus = hp816x_error_query(IHandle, status, message)ElseretStatus = hp816x_error_message(IHandle, status, message)End Ifresult = MsgBox(message, vbOKOnly + vbExclamation, "VxiPnP Driver")Ret:End Sub

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?