PreviousNextIndex

RCODE-INFO system handle

A handle to a specific ABL r-code file.

RCODE-INFO [ :attribute ] 

attribute
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

OpenEdge Release 10.2B
Copyright © 2009 Progress Software Corporation
PreviousNextIndex