[an error occurred while processing this directive]
Forms Processor Advanced Commands
Contents   Index of Commands   Search the Forms Processor Docs   
exit

Terminates execution of Form Processor configuration file and exits. Typically this would be used to exit if a condition was met.

Syntax: exit;

Examples:

# Can be used in a configuration file as a single command:

exit;


# Or you can test for errors and exit by using a conditional statement:

if ($error)

# some previous condition indicated an error, so print it and exit

format screen
$error
.

exit;

endif

[an error occurred while processing this directive]