INT %HI_OpenRow( HBJ in refToStruct, INT in index [BOOL in bAsync := @FALSE] )
refToStruct | Reference to the object of Structured variable type. |
index | Structured variable row. |
bAsync | @TRUE - asynchronous function. @FALSE - synchronous function. |
According to the parameter bAsync, the function is:
INT _retCode TEXT _errMsg _retCode := %HI_OpenRow(SV.Structure\HBJ, 5) IF _retCode # _ERR_NO_ERROR THEN _errMsg := "%HI_OpenRow(SV.Structure\HBJ ErrorCode = " + %IToStr(_retCode) ELSE ; values are accessible ENDIF
Pridať komentár