Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

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();

LogOn

Logs on with the provided user information.

Subroutine

LogOn(“UserID”,”Password”)

Description

Logs on with the a user ID and password that is are registered to with the ‘Security’ feature. If the wrong information is used, one of the following messages will pop up. :

Example

Logs on with the user ID “ATIVA”, password “0000”.
LogOn(“ATIVA”,”0000”);

...