ENTRY OnLogOn(IN TEXT _userName, IN BOOL _bLogOn)
IF _bLogOn THEN
;when a user is logged on, a text in column can be edited
%HI_SetColumnMasterEditable(_Text,@TRUE)
ELSE
;when a user is logged off, the access to a text in column is disabled
%HI_SetColumnMasterEditable(_Text,@FALSE)
ENDIF
END OnLogOn
Pridať komentár