FORM REPORT
Writes the values of the fields in the current form or display to the current output device.
Syntax
FORM REPORT [ PAGESIZE n]
Parameters
PAGESIZE n | The number of lines ( n) that constitute one “page” of output. The default PAGESIZE is 66 lines. The output is padded with blank lines if the specified page size is greater than the number of lines in the form. PAGESIZE is independent of the size of the window or the terminal screen. |
Comments
The form does not need to be displayed before FORM REPORT is executed.
Note: FORM REPORT works with Zim Version 4 windows only.
Example
form open fCustomer
change fCustomer from Customers where CustCode = “12345”
set output CustFormOut
form report
set output terminal
form close
The current form is stored, with the contents of its form fields, in an application document for later printing.
See Also