Programming Reference Manual
 
Syntax
 
Result = FieldPresent(Key)
 
Description
Return True/False depending on whether a form field is present.
Typically used to detect if a checkbox in a form is checked or not. Unchecked checkboxes are omitted from the form content..
 
Parameter
Description
Key
The keyname of the form field.
Result
Boolean. Returns true is the field exists.
See Also
Example
 
Sub Main
Debug.Print Unique(“C:\”)
End Sub