Consultor Eletrônico



Kbase P102496: How to get Progress installation directory from the current session via 4GL
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   3/24/2005
Status: Unverified

GOAL:

How to get Progress installation directory from the current session via 4GL

FACT(s) (Environment):

Windows

FIX:

Use GET-KEY-VALUE statement.

The following code is a sample:

DEF VAR DATA AS CHARACTER NO-UNDO.

GET-KEY-VALUE SECTION "Startup"
KEY "DLC"
VALUE DATA.

MESSAGE data
VIEW-AS ALERT-BOX INFO BUTTONS OK.