Forminit
Declares an uncompiled form to the FRS.
Examples--forminit statement:
Example 1:
This example declares the uncompiled forms empform and deptform:
## forminit empform, deptform
Example 2:
This example insures that the forminit statement is not executed more than once for this form:
## added integer /* statically initialized to 0 */
if (added = 0) then
## message "initializing form..."
## forminit empform
## added = 1
end if
Last modified date: 08/28/2024