Versions Compared

Key

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

...

LogOn

Logs on with the user information.

Subroutine

LogOn(“UserID”,”Password”)

Description

Logs on with the user ID and password that is registered to the ‘Security’. If the wrong information is used, one of the message messages shown below will pop up.

Example

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

...

GetSecurity

Returns the current security level.

Function

n=GetSecurity()

Description

Returns the current security level and store stores the value to the variable.

Example

Stores the current security level to the variable “Slevel”.

Var Slevel;

……

Slevel = GetSecurity();

...