LogOn | Logs on with the user information. |
Subroutine | LogOn(“UserID”,”Password”) |
Description | Logs on with the user ID and password that is registered to ‘Security’. If the wrong information is used, one of the messages shown below will pop up. |
Example | Logs on with the user ID “CIMON”, password “0000”. |
LogOff | Logs out the current user. |
Subroutine | LogOff(); |
Description | Logs out the current user. |
Example | Logs out the current user. LogOff(); |
GetSecurity | Returns the current security level. |
Function | n=GetSecurity() |
Description | Returns the current security level and stores the value to the variable. |
Example | Stores the current security level to the variable “Slevel”. Var Slevel; …… Slevel = GetSecurity(); |