Kbase P23778: How to display the label and value of a field in the same li
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  11/25/2003 |
|
Status: Unverified
GOAL:
How to display the label and value of a field in the same line
GOAL:
How to display the label in the same line without using COLUMN keyword
FIX:
Use "FORM" with SIDE-LABELS:
Example:
DEFINE VARIABLE X AS CHARACTER LABEL "test label" NO-UNDO.
X = "test value".
DISPLAY X WITH 1 COLUMN.
Using FORM produces similar results as above:
DEFINE VARIABLE X AS CHARACTER LABEL "test label" NO-UNDO.
X = "test value".
FORM X WITH SIDE-LABELS.
DISPLAY X.