Was this helpful?
Display
Displays a form.
Examples--display statement:
Example 1:
The following example displays empform in update mode, with only an initialize and finalize statement:
## display empform update
## initialize (ename = vname, age = vage)
## finalize (vname = ename, vage = age)
Example 2:
The following example displays empform in the default fill mode, with two activate sections and no initialize or finalize statements:
## display empform
## activate menuitem "fill"
## {
      program code
## }
## activate menuitem "end"
## {
##    breakdisplay
## }
      program code
Example 3:
The following example displays empform in a pop-up window with no border, starting in the third row:
## display empform with style=popup
                        (border=none, startrow=3)
Last modified date: 11/28/2023