vfoGRRegCreateFormUpdateCallback
vfoGRRegCreateFormUpdateCallback(r_formPointer t_procedureName[l_callbackList] )
Description
Registers the user-defined form customization procedure. This procedure gets called for the particular form pointer after the vfoGRUpdateCreateForm trigger is called.
Arguments
|
The formPointer generated using vfoGRNewCreateForm. |
|
|
The name of the user-defined form customization procedure defined for the Create Guard Ring form. |
|
|
List of the callback procedures required for controlling the display of the OK, Cancel, and Apply buttons on the form. This is an optional argument. |
|
Value Returned
Example
; create the new Create Guard Ring form and store its form pointer
form_modgen = vfoGRNewCreateForm ("MODGEN" 'OKCancelApply)
; register the callback for the given form pointer
vfoGRRegCreateFormUpdateCallback (form_modgen "vfoCustomize_modgen")
; define the callback
procedure (vfoCustomize_modgen (formPointer
; write your own method body here related
; to Create Guard Ring form updates
)
hiDisplayForm(form_modgen)
Return to top