Consultor Eletrônico



Kbase P85603: Tool to determine the CRC value of the r-code files
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   29/09/2006
Status: Verified

GOAL:

Tool for getting r-code info

GOAL:

How to see the r-code CRC value

GOAL:

How to get CRC value for a r-file

FACT(s) (Environment):

Progress 9.x
OpenEdge 10.x

FIX:

There is the possibility to use the RCODE-INFO handle to check the CRC value of the r-code.
Following is the example code to use as a tool:

DEFINE VARIABLE rcode-file AS CHARACTER 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.