en:software:qview:qview_6:qcl_library:vi10clrerrorcode

This translation is older than the original page and might be outdated. See what has changed.

VI10ClrErrorCode

V = Vector

I = Image

Function that is used to manage the Vector Image feature (object that resides on some Qpaint versions).

The VI10ClrErrorCode function used to reset any errors generated by the design process. This errors can be identified by using the VI10GetErrorCode function.

VI10ClrErrorCode (awBuffer)

Parameters:

IN/OUTVARIABLE TYPEEXAMPLE NAMEDIM
IN ARRSYS /
ARRGBL
awBuffer W Array that serves as a buffer for instructions/data

Example

TASK_00

MAIN:
 
VI10DrawBuffer(awBuffer )			;Draws the contents of the Buffer
 
VI10WaitBufferReadyUsingEND( awBuffer )	        ;Awaits the conclusion of the drawing
 
VI10GetErrorCode( awBuffer, gwError )	        ;Check if there are errors
 
IF (gwError GE 1) AND (gwError LE 3)
      VI10ClrErrorCode (awBuffer)		;Resets all errors
      JUMP ERROR
ENDIF

Note

  • Last modified: 2019/08/29 17:01