RCODE-INFO handle

A handle to a specific ABL r-code file.

Syntax

RCODE-INFO [ :attribute ]
attribute
Specifies an attribute of the RCODE-INFO handle.

Attributes

Example

The following example prompts for the name of an r-code file and returns its CRC code and the languages for which it is compiled:

r-rcode.p

DEFINE VARIABLE rcode-file  AS CHARACTER NO-UNDO FORMAT "x(60)" LABEL "File".

REPEAT:
  SET rcode-file WITH FRAME rc-info.
  RCODE-INFO:FILE-NAME = rcode-file.
  DISPLAY RCODE-INFO:CRC-VALUE LABEL "CRC"
    RCODE-INFO:LANGUAGES FORMAT "x(60)" LABEL "Languages"
    WITH FRAME rc-info SIDE-LABELS TITLE "R-code Check".
END.

Notes