WWW.NNC.IR
Macro Reference
774
Vision System FH/FZ5 Series
User’s Manual (Z340)
Example
Uses the Try Catch-End Try statement in the *MEASUREPROC subroutine of the Unit Macro processing unit
to detect the error occurrence and get the detected error number.
Useable Modules
Unit Calculation Macro / Scene Control Macro / Communication Command Macro / Unit Macro
Supported Versions
Version 3.50 or later
Related Items
*MEASUREPROC
Try
WORK& = 0
SUMM& = 100 + 200 + 300
ANS& = SUMM& / WORK&
Catch
If Errno = 11 Then
Rem Output the error number and the error content on the system status console window
Print "Error Number = " + Str$(Errno) + ", Division by Zero"
Endif
End Try
Return
Errcmnd$ (Reference: X Details (p.513)) Errno (Reference: X Details (p.515))
If Then Elseif Else EndIf (Reference: X Details
(p.564))
Print (Reference: X Details (p.639))
Str$ (Reference: X Details (p.749))