FieldVerify() As Long

Description

This event is fired right before a field is to be verified in the normal (full-screen) mode in Verify.

If the FORMS’ internal dialog is replaced by an external one, EV_OK_ABORT should be returned. If the user clicks Cancel in the dialog, set the extended return value using SetReturnValue. If no return value is set, the user is assumed to have clicked OK, and Verify continues to the next field.

Settings

Use the following arguments with SetReturnValue in FieldVerify:

0, "C"

Make the current Application (FORMS module) pause; SetReturnValue (0, "C").

0, "D"

Delete the current field; SetReturnValue (0, "D").

Parameters

None.

Return values

Return value

Description

EV_OK

Normal return.

EV_OK_ABORT 

The normal dialog is skipped.

EV_ERROR

Causes an error message and job termination.

Suggested usage

Could be used for replacing FORMS’ usual field verification dialog with your own version.

Remarks

Only fired in the Verify module.

Field-level events