Versions Compared

Key

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

Type

Format

Description

Subroutine

AddMessage(Message ID, Added Message)

Adds a new message to the scroll message window.

Subroutine

AddMessageEx(Message ID, Added Message, Level)

Adds a new message to the scroll message window with a level.

Subroutine

AlarmCSVWr(AlarmGroup, “CSVFileName”, TimeDisplay, PrintOption, Location)

Saves the alarm messages as a CSV file.

Subroutine

AlarmPrint(AlarmGroup, Messages, TimeDisplay, FontSize, PrintOption)

Prints the alarm messages with printer.

Subroutine

ClearAlarmLog(AlarmGroup)

Deletes the entire alarm log of the assigned alarm group.

Subroutine

RemoveLastAlarms()

Remove contents except current alarms from the alarm summary.

Subroutine

RemoveMessage(MessageID)

Removes the scroll message which is added by AddMessage() function.

...

ClearAlarmLog

Clears all messages listed in the designated alarm group.

Subroutine

ClearAlarmLog(AlarmGroup)

Description

Deletes the entire alarm log of the assigned AlarmGroup (1~10).

Example

Clears all alarm messages in the alarm group #3.

ClearAlarmLog(3);

 

RemoveLastAlarms

Removes contents except current alarms from the alarm summary.

Subroutine

RemoveLastAlarms()

Description

Removes contents except current alarms from the alarm summary.

Example

Removes contents except current alarms from the alarm summary.

RemoveLastAlarms();

RemoveMessage

Removes a string which was already registered to the scroll message window by the AddMessage() function.

Subroutine

RemoveMessage(MessageID)

Description

Removes the scroll message that was added by the AddMessage() function.

Assign the message ID (0~9999) to the MessageID.

When you assign -1, all messages in the scroll message window will be deleted.

Example

Deletes all messages in the scroll message window.

RemoveMessage(-1);

...