PreviousNextIndex

DICTIONARY statement

Runs the OpenEdge Data Dictionary.

Note: Does not apply to SpeedScript programming.
Syntax

DICTIONARY 

Example

This procedure runs the Data Dictionary if the user answers yes to a prompt:

r-dict.p
DEFINE VARIABLE ans AS LOGICAL NO-UNDO. 
DISPLAY "Do you want to access the Dictionary?" 
  WITH ROW 7 COLUMN 20 NO-LABELS. 
UPDATE ans. 
IF ans THEN DICTIONARY. 

Notes

OpenEdge Release 10.2B
Copyright © 2009 Progress Software Corporation
PreviousNextIndex