4D v16.3

Form event

Home

 
4D v16.3
Form event

Form event 


 

Form event -> Function result 
Parameter Type   Description
Function result  Longint in Form event number

Form event returns a numeric value identifying the type of form event that has just occurred. Usually, you will use Form event from within a form or object method.

4D provides predefined constants (found in the Form Events theme) in order to compare the values returned by the Form event command.

Certain events are generic (generated for any type of object) and others are specific to a particular type of object.

Constant Type Value Comment
On Load Longint 1 The form is about to be displayed or printed
On Mouse Up Longint 2 (Pictures only) The user has just released the left mouse button in a Picture object
On Validate Longint 3 The record data entry has been validated
On Clicked Longint 4 A click occurred on an object
On Header Longint 5 The form’s header area is about to be printed or displayed
On Printing Break Longint 6 One of the form’s break areas is about to be printed
On Printing Footer Longint 7 The form’s footer area is about to be printed
On Display Detail Longint 8 A record is about to be displayed in a list or a row is about to be displayed in a list box.
On Outside Call Longint 10 The form received a CALL PROCESS call
On Activate Longint 11 The form’s window becomes the frontmost window
On Deactivate Longint 12 The form’s window ceases to be the frontmost window
On Double Clicked Longint 13 A double click occurred on an object
On Losing Focus Longint 14 A form object is losing the focus
On Getting Focus Longint 15 A form object is getting the focus
On Drop Longint 16 Data has been dropped onto an object
On Before Keystroke Longint 17 A character is about to be entered in the object that has the focus. Get edited text returns the object's text without this character.
On Menu Selected Longint 18 A menu item has been chosen
On Plug in Area Longint 19 An external object requested its object method to be executed
On Data Change Longint 20 Object data has been modified
On Drag Over Longint 21 Data could be dropped onto an object
On Close Box Longint 22 The window’s close box has been clicked
On Printing Detail Longint 23 The form’s detail area is about to be printed
On Unload Longint 24 The form is about to be exited and released
On Open Detail Longint 25 The detail form associated with the output form or with the listbox is about to be opened
On Close Detail Longint 26 You left the detail form and are going back to the output form
On Timer Longint 27 The number of ticks defined by the SET TIMER command has passed
On After Keystroke Longint 28 A character is about to be entered in the object that has the focus. Get edited text returns the object's text including this character.
On Resize Longint 29 The form window is resized
On After Sort Longint 30 (List box only) A standard sort has just been carried out in a list box column
On Selection Change Longint 31
  • List box: The current selection of rows or columns is modified
  • Records in list: The current record or the current selection of rows is modified in a list form or subform
  • Hierarchical list: The selection in the list is modified following a click or a keystroke
  • Enterable field or variable: The text selection or the position of the cursor in the area is modified following a click or a keystroke
On Column Moved Longint 32 (List box only) A list box column is moved by the user via drag and drop
On Column Resize Longint 33 (List box only) The width of a list box column is modified by a user with the mouse
On Row Moved Longint 34 (List box only) A list box row is moved by the user via drag and drop
On Mouse Enter Longint 35 The mouse cursor enters the graphic area of an object
On Mouse Leave Longint 36 The mouse cursor leaves the graphic area of an object
On Mouse Move Longint 37 The mouse cursor moves at least one pixel OR a modifier key (Shift, Alt, Shift Lock) was pressed. If the event is checked for an object only, it is generated only when the cursor is within the graphic area of the object
On Alternative Click Longint 38
  • 3D buttons: The “arrow” area of a 3D button is clicked
  • List boxes: In a column of an object array, an ellipsis button ("alternateButton" attribute) is clicked
    Note: Ellipsis buttons are only available for versions v15 or higher.
On Long Click Longint 39 (3D buttons only) A 3D button is clicked and the mouse button remains pushed for a certain lapse of time
On Load Record Longint 40 During entry in list, a record is loaded during modification (the user clicks on a record line and a field changes to editing mode)
On Before Data Entry Longint 41 (List box only) A list box cell is about to change to editing mode
On Header Click Longint 42 (List box only) A click occurs in a column header of the list box
On Expand Longint 43 (Hierarchical lists and hierarchical list boxes) An element of the hierarchical list or hierarchical list box has been expanded using a click or a keystroke
On Collapse Longint 44 (Hierarchical lists and hierarchical list boxes) An element of the hierarchical list or hierarchical list box has been collapsed using a click or a keystroke
On After Edit Longint 45 The contents of the enterable object that has the focus has just been modified
On Begin Drag Over Longint 46 An object is being dragged
On Begin URL Loading Longint 47 (Web areas only) A new URL is loaded in the Web area
On URL Resource Loading Longint 48 (Web areas only) A new resource is loaded in the Web area
On End URL Loading Longint 49 (Web areas only) All the resources of the URL have been loaded
On URL Loading Error Longint 50 (Web areas only) An error occurred when the URL was loading
On URL Filtering Longint 51 (Web areas only) A URL was blocked by the Web area
On Open External Link Longint 52 (Web areas only) An external URL has been opened in the browser
On Window Opening Denied Longint 53 (Web areas only) A pop-up window has been blocked
On bound variable change Longint 54 The variable bound to a subform is modified.
_o_On Mac toolbar button Longint 55 *** Obsolete constant ***
On Page Change Longint 56 The current page of the form is changed
On Footer Click Longint 57 (List boxes only) A click occurs in the footer of a list box or a list box column
On Delete Action Longint 58 (Hierarchical lists and List boxes) The user attempts to delete an item
On Scroll Longint 59 The user scrolls the contents of a picture field or variable using the mouse or keyboard.

Note: The events specific to output forms cannot be used with project forms. This includes: On Display Detail, On Open Detail, On Close Detail, On Load Record, On Header, On Printing Detail, On Printing Break, On Printing Footer.

When a form event occurs, 4D performs the following actions:

  • First, it browses the objects of the form and calls the object method for any object (involved in the event) whose corresponding object event property has been selected.
  • Second, it calls the form method if the corresponding form event property has been selected.

Do not assume that the object methods, if any, will be called in a particular order. The rule of thumb is that the object methods are always called before the form method. If an object is a subform, the object methods of the subform’s list form are called, then the form method of the list form is called. 4D then continues to call the object methods of the parent form. In other words, when an object is a subform, 4D uses the same rule of thumb for the object and form methods within the subform object.

Except for the On Load and On Unload events, if the form event property is not selected for a given event, this does not prevent calls to object methods for the objects whose same event property is selected. In other words, enabling or disabling an event at the form level has no effect on the object event properties.

The number of objects involved in an event depends on the nature of the event:

  • On Load event - All the objects of the form (from any page) whose On Load object event property is selected will have their object method called. Then, if the On Load form event property is selected, the form will have its form method called.
  • On Activate or On Resize event - No object method will be called, because this event applies to the form as a whole and not to a particular object. Consequently, if the On Activate form event property is selected, only the form will have its form method called.
  • On Timer event - This event is generated only if the form method contains a previous call to the SET TIMER command. If the On Timer form event property is selected, only the form method will receive the event, no object method will be called.
  • On Drag Over event - Only the droppable object involved in the event will have its object method called if the "Droppable" event property is selected for it. The form method will not be called.
  • Conversely, for the On Begin Drag Over event, the object method or form method of the object being dragged will be called (if the "Draggable" event property is selected for the it).

WARNING: Unlike all other events, during a On Begin Drag Over event, the method called is executed in the context of the process of the drag and drop source object, not in that of the drag and drop destination object. For more information, see the Drag and Drop section.

  • If the On Mouse Enter, On Mouse Move and On Mouse Leave events have been checked for the form, they are generated for each form object. If they are checked for an object, they are generated only for that object. When there are superimposed objects, the event is generated by the first object capable of managing it that is found going in order from top level to bottom. Objects that are made invisible using the OBJECT SET VISIBLE command do not generate these events. During object entry, other objects may receive these type of events depending on the position of the mouse.
    Note that the On Mouse Move event is generated not only when the mouse cursor is moved but also when the user presses a modifier key such as Shift, Shift Lock, Ctrl or Option (this makes it possible to manage copy- or move-type drag-and-drop operations).
  • Records in list: The sequence of calls to methods and form events in the list forms displayed via DISPLAY SELECTION and MODIFY SELECTION and the subforms is as follows:
    For each object in the header area:
    • Object method with On Header event
    • Form method with On Header event
    For each record:
    • For each object in the detail area:
      • Object method with On Display Detail event
    • Form method with On Display Detail event
  • Calling a 4D command that displays a dialog box from the On Display Detail and On Header events is not allowed and will cause a syntax error to occur. More particularly, the commands concerned are: ALERT, DIALOG, CONFIRM, Request, ADD RECORD, MODIFY RECORD, DISPLAY SELECTION and MODIFY SELECTION.
  • On Page Change: This event is only available at the form level (it is called in the form method). It is generated each time the current page of the form changes (following a call to the FORM GOTO PAGE command or a standard navigation action). Note that it is generated after the page is fully loaded, i.e. once all the objects it contains are initialized (including Web areas). This event is useful for executing code that requires all objects to be initialized beforehand. You can also use it to optimize the application by executing code (for example, a search) only after a specific page of the form is displayed and not just as soon as page 1 is loaded. If the user does not go to this page, the code is not executed .

The following table summarizes how object and form methods are called for each event type:

EventObject MethodsForm MethodWhich Objects
On LoadYesYesAll objects
On UnloadYesYesAll objects
On ValidateYesYesAll objects
On ClickedYes (if clickable or enterable) (*)YesInvolved object only
On Double ClickedYes (if clickable or enterable) (*)YesInvolved object only
On Before KeystrokeYes (if enterable) (*)YesInvolved object only
On After KeystrokeYes (if enterable) (*)YesInvolved object only
On After EditYes (if enterable) (*)YesInvolved object only
On Getting FocusYes (if tabbable) (*)YesInvolved object only
On Losing FocusYes (if tabbable) (*)YesInvolved object only
On ActivateNeverYesNone
On DeactivateNeverYesNone
On Outside CallNeverYesNone
On Page ChangeNeverYesNone
On Begin Drag OverYes (if draggable) (**)YesInvolved object only
On DropYes (if droppable) (**)YesInvolved object only
On Drag OverYes (if droppable) (**)NeverInvolved object only
On Mouse EnterYesYesAll objects
On Mouse MoveYesYesAll objects
On Mouse LeaveYesYesAll objects
On Mouse UpYesNeverInvolved object only
On Menu SelectedNeverYesNone
On Bound variable changeNeverYesNone
On Data ChangeYes (if modifiable) (*)YesInvolved object only
On Plug in AreaYesYesInvolved object only
On HeaderYesYesAll objects
On Printing DetailYesYesAll objects
On Printing BreakYesYesAll objects
On Printing FooterYesYesAll objects
On Close BoxNeverYesNone
On Display DetailYesYesAll objects
On Open DetailNo, except for List boxesYesNone except List boxes
On Close DetailNo, except for List boxesYesNone except List boxes
On ResizeNeverYesNone
On Selection ChangeYes (***)YesInvolved object only
On Load RecordNeverYesNone
On TimerNeverYesNone
On ScrollYesNeverInvolved object only
On Before Data EntryYes (List box)NeverInvolved object only
On Column MovedYes (List box)NeverInvolved object only
On Row MovedYes (List box)NeverInvolved object only
On Column ResizeYes (List box)NeverInvolved object only
On Header ClickYes (List box)NeverInvolved object only
On Footer ClickYes (List box)NeverInvolved object only
On After SortYes (List box)NeverInvolved object only
On Long ClickYes (3D button)YesInvolved object only
On Alternative ClickYes (3D button and List box)NeverInvolved object only
On ExpandYes (Hier. list and list box)NeverInvolved object only
On CollapseYes (Hier. list and list box)NeverInvolved object only
On Delete ActionYes (Hier. list and list box)NeverInvolved object only
On URL Resource LoadingYes (Web Area)NeverInvolved object only
On Begin URL LoadingYes (Web Area)NeverInvolved object only
On URL Loading ErrorYes (Web Area)NeverInvolved object only
On URL FilteringYes (Web Area)NeverInvolved object only
On End URL LoadingYes (Web Area)NeverInvolved object only
On Open External LinkYes (Web Area)NeverInvolved object only
On Window Opening DeniedYes (Web Area)NeverInvolved object only


(*) For more infomation, see the "Events, Objects and Properties" section below.
(**) Refer to the "Drag and Drop" chapter for more information.
(***) Only list box, hierarchical list and subform type objects support this event.

IMPORTANT: Always keep in mind that, for any event, the method of a form or an object is called if the corresponding event property is selected for the form or objects. The benefit of disabling events in the Design environment (using the Property List of the Form editor) is that you can greatly reduce the number of calls to methods and therefore significantly optimize the execution speed of your forms.

WARNING: The On Load and On Unload events are generated for objects if they are enabled for both the objects and the form to which the objects belong. If the events are enabled for objects only, they will not occur; these two events must also be enabled at the form level.

An object method is called if the event can actually occur for the object, depending on its nature and properties. The following section details the events you will generally use to handle the various types of objects.
Keep in mind that the Property List of the Form editor only displays the events compatible with the selected object or the form.

Clickable objects are mainly handled using the mouse. They include:

  • Boolean enterable fields or variables
  • Buttons, default buttons, radio buttons, check boxes, button grids
  • 3D Buttons, 3D radio buttons, 3D check boxes
  • Pop-up menus, hierarchical pop-up menus, picture menus
  • Drop-down lists, menus/drop-down lists
  • Scrollable areas, hierarchical lists, list boxes and list box columns
  • Invisible buttons, highlight buttons, radio pictures
  • Thermometers, rulers, dials (also known as slider objects)
  • Tab controls
  • Splitters.

After the On Clicked or On Double Clicked object event property is selected for one of these objects, you can detect and handle the clicks within or on the object, using the Form event command that returns On Clicked or On Double Clicked, depending on the case.

Note: Starting with 4D v14, enterable fields and variables containing text (of the text, date, time, or number type) also generate the On Clicked and On Double Clicked events.

If both events are selected for an object, the On Clicked and then the On Double Clicked events will be generated when the user double-clicks the object.

For all these objects, the On Clicked event occurs once the mouse button is released. However, there are several exceptions:

  • Invisible buttons - The On Clicked event occurs as soon as the click is made and does not wait for the mouse button to be released.
  • Slider objects (thermometers, rulers, and dials) - If the display format indicates that the object method must be called while you are sliding the control, the On Clicked event occurs as soon as the click is made.

In the context of an On Clicked event, you can test the number of clicks made by the user by means of the Clickcount command.

Note: Some of these objects can be activated with the keyboard. For example, once a check box gets the focus, it can be entered using the space bar. In such a case, an On Clicked event is still generated.

WARNING: Combo boxes are not considered to be clickable objects. A combo box must be treated as an enterable text area whose associated drop-down list provides default values. Consequently, you handle data entry within a combo box through the On Before Keystroke, On After Keystroke and On Data Change events.

Note: Starting with 4D v13, pop-up menu/drop-down list and hierarchical pop-up menus can generate the On Data Change event. This allows you to detect the activation of the object when a value different from the current value is selected.

Keyboard enterable objects are objects into which you enter data using the keyboard and for which you may filter the data entry at the lowest level by detecting On After Edit, On Before Keystroke, On After Keystroke  and On Selection Change events. You can take advantage of these events using the Get edited text command.
Keyboard enterable objects and data types include:

  • All enterable field objects of the alpha, text, date, time, number or (On After Edit only) picture type
  • All enterable variables of the alpha, text, date, time, number or (On After Edit only) picture type
  • Combo boxes (except On Selection Change)
  • List boxes.

Note: Starting with 4D v14, enterable fields and variables containing text (of the text, date, time, or number type) also generate the On Clicked and On Double Clicked events.

Note: Even though they are “enterable” objects, hierarchical lists do not manage the On After Edit, On Before Keystroke and On After Keystroke form events (see also the “Hierarchical lists” paragraph below).

  • On Before Keystroke and On After Keystroke
    Note:
    The On After Keystroke event can generally be replaced by the On After Edit event (see below).
    After the On Before Keystroke and On After Keystroke event properties are selected for an object, you can detect and handle the keystrokes within the object, using the Form event command that will return On Before Keystroke and then On After Keystroke (for more information, please refer to the description of the Get edited text command). These events are also activated by language commands that simulate a user action like POST KEY.
    Keep in mind that user modifications that are not carried out using the keyboard (paste, drag-drop, etc.) are not taken into account. To process these events, you must use On After Edit.
    Note:
    The On Before Keystroke and On After Keystroke events are not generated when using an input method. An input method (or IME, Input Method Editor) is a program or a system component that can be used to enter complex characters or symbols (for example, Japanese or Chinese) using a Western keyboard.

  • On After Edit
    When it is used, this event is generated after each change made to the contents of an enterable object, regardless of the action that caused the change, i.e.:
    - Standard editing actions which modify content like paste, cut, delete or cancel;
    - Dropping a value (action similar to paste);
    - Any keyboard entry made by the user; in this case, the On After Edit event is generated after the On Before Keystroke and On After Keystroke events, if they are used.
    - Any modification made using a language command that simulates a user action (i.e., POST KEY).

    Be aware that the following actions do NOT trigger this event:
    - Editing actions that do not modify the contents of the area like copy or select all; or dragging a value (action similar to copy); however, these actions do modify the location of the cursor and thus trigger the On Selection Change event.
    - Any modifications made to the contents by programming, except for the commands simulating a user action.
    This event can be used to control user actions in order, for example, to prevent the pasting in of text that is too long, to block certain characters or to prevent a password field from being cut.
  • On Selection Change
    When it is applied to a text field or variable (enterable or not), this event is triggered each time the position of the cursor changes. This happens, for instance, as soon as the user selects text using the mouse or keyboard arrow keys, or when the user enters text. This lets you call, for example, commands such as GET HIGHLIGHT.

Modifiable objects have a data source whose value can be changed using the mouse or the keyboard; they are not truly considered as user interface controls handled through the On Clicked event. They include:

  • All enterable field objects (except BLOBs)
  • All enterable variables (except BLOBs, pointers, and arrays)
  • Combo boxes
  • External objects (for which full data entry is accepted by the plug-in)
  • Hierarchical lists
  • List boxes and list box columns.

These objects receive On Data Change events. After the On Data Change object event property is selected for one of these objects, you can detect and handle the change of the data source value, using the Form event command that will return On Data Change. The event is generated as soon as the variable associated with the object is updated internally by 4D (i.e., in general, when the entry area of the object loses the focus).

Tabbable objects get the focus when you use the Tab key to reach them and/or click on them. The object having the focus receives the characters (typed on the keyboard) that are not modifiers to a menu item or to an object such as a button.

All objects are tabbable, EXCEPT the following:

  • Non-enterable fields or variables
  • Button grids
  • 3D buttons, 3D radio buttons, 3D check boxes
  • Pop-up menus, hierarchical pop-up menus
  • Menus/drop-down lists
  • Picture menus
  • Scrollable areas
  • Invisible buttons, highlight buttons, radio picture buttons
  • Graphs
  • External objects (for which full data entry is accepted by the 4D plug-in)
  • Tab controls
  • Splitters.

After the On Getting Focus and/or On losing Focus object event properties are selected for a tabbable object, you can detect and handle the change of focus, using the Form event command that will return On Getting Focus or On losing Focus, depending on the case.

3D buttons let you set up advanced graphic interfaces (for a description of 3D buttons, refer to the Design Reference manual). In addition to generic events, two specific events can be used to manage these buttons:

  • On Long Click: This event is generated when a 3D button receives a click and the mouse button is held for a certain length of time. In theory, the length of time for which this event is generated is equal to the maximum length of time separating a double-click, as defined in the system preferences.
    This event can be generated for all styles of 3D buttons, 3D radio buttons and 3D check boxes, with the exception of “previous generation” 3D buttons (i.e. background offset style) and arrow areas of 3D buttons with a pop-up menu (see below).
    This event is generally used to display pop-up menus in case of long button clicks. The On Clicked event, if enabled, is generated if the user releases the mouse button before the “long click” time limit.
  • On Alternative Click: Some 3D button styles can be linked to a pop-up menu and display an arrow. Clicking on this arrow causes a selection pop-up to appear that provides a set of alternative actions in relation to the primary button action.
    4D allows you to manage this type of button using the On Alternative Click event. This event is generated when the user clicks on the “arrow” (as soon as the mouse button is held down):
    - If the pop-up menu is “separated,” the event is only generated when a click occurs on the portion of the button with the arrow.
    - If the pop-up menu is “linked,” the event is generated when a click occurs on any part of the button. Please note that the On Long Click event cannot be generated with this type of button.

The following 3D button, 3D radio button and 3D check box styles accept the “With pop-up menu” property: None, Toolbar button, Bevel, Rounded bevel and Office XP.

Several form events can be used to manage various specific features of list boxes:

  • On Before Data Entry: This event is generated just before a cell in the list box is edited (before the entry cursor is displayed). This event allows the developer, for example, to display a different text depending on whether the user is in the display or edit mode.
  • On Selection Change: This event is generated each time the current selection of rows or columns of the list box is modified. This event is also generated for lists of records and hierarchical lists.
  • On Column Moved: This event is generated when a column of the list box is moved by the user using drag and drop. It is not generated if the column is dragged and then dropped in its initial location. The LISTBOX MOVED COLUMN NUMBER command returns the new position of the column.
  • On Row Moved: This event is generated when a row of the list box is moved by the user using drag and drop. It is not generated if the row is dragged and then dropped in its initial location.
  • On Column Resize: This event is generated when the width of a column in the list box is modified by a user. Starting with 4D v16, the event is triggered "live," i.e., sent continuously during the event, for as long as the list box or column concerned is being resized. This resizing is performed manually by a user, or may occur as a result of the list box and its column(s) being resized along with the form window itself (whether the form is resized manually or using the RESIZE FORM WINDOW command).
    Note: The On Column Resize event is not triggered when a "fake" column is resized (for more information on fake columns, please refer to Resizing Options theme).
  • On Expand and On Collapse: These events are generated when a row of the hierarchical list box is expanded or collapsed.
  • On Header Click: This event is generated when a click occurs on the header of a column in the list box. In this case, the Self command lets you find out the header of the column that was clicked. The On Clicked event is generated when a right click (Windows) or Ctrl+click (Mac OS) occurs on a column or column header. You can test the number of clicks made by the user by means of the Clickcount command.
    If the Sortable property was checked in the list box, you can decide whether or not to authorize a standard sort of the column by passing the value 0 or -1 in the $0 variable:
    - If $0 equals 0, a standard sort is performed.
    - If $0 equals -1, a standard sort is not performed and the header does not display the sort arrow. The developer can still generate a column sort based on customized sort criteria using the 4D array management commands.
    If the Sortable property is not selected for the list box, the $0 variable is not used.
  • On Footer Click: This event is available for a list box or list box column object. It is generated when a click occurs in the footer of a list box or a list box column. In this case, the OBJECT Get pointer command returns a pointer to the variable of the footer that is clicked. The event is generated for both left and right clicks.
    You can test the number of clicks made by the user by means of the Clickcount command.
  • On After Sort: This event is generated just after a standard sort is performed (i.e. it is not generated if $0 returns -1 in the On Header Click event). This mechanism is useful for storing the directions of the last sort performed by the user. In this event, the Self command returns a pointer to the variable of the sorted column header.
  • On Delete Action: This event is generated each time a user attempts to delete the selected item(s) by pressing a deletion key (Delete or Backspace) or selecting a menu item whose associated standard action is 'Clear' (such as the Clear command in the Edit menu). This event is only available at the level of the list box object. Note that generating the event is the only action carried out by 4D: the program does not delete any items. It is up to the developer to handle the deletion and any prior warning messages that are displayed.
  • On Scroll (new in v15): This event is generated as soon as a user scrolls the rows or columns of the list box. The event is only generated when the scroll is the result of a user action: using the scroll bars and/or cursors, using the mouse wheel or the keyboard. It is not generated when scrolling is due to the execution of the OBJECT SET SCROLL POSITION command.
    This event is triggered after any other user event related to the scrolling action (On Clicked, On After Keystroke, etc.). The event is only generated in the object method (not in the form method). Refer to example 15.
  • On Alternative Click (new in v15): This event is generated in columns of object array type list boxes, when the user clicks on a widget ellipsis button ("alternateButton" attribute). For more information, refer to the Using object arrays in columns (4D View Pro) section.

Two generic events can also be used in the context of "selection" type list boxes:

  • On Open Detail: This event is generated when a record is about to be displayed in the detail form associated with a "selection" type list box (and before this form is opened).
  • On Close Detail: This event is generated when a record displayed in the detail form associated with a "selection" type list box is about to be closed (regardless of whether or not the record was modified).

In addition to generic events, several specific events can be used to handle user actions performed on hierarchical lists:

  • On Selection Change: This event is generated every time the selection in the hierarchical list is modified after a mouse click or keystroke.
    This event is also generated in list box objects and record lists.
  • On Expand: This event is generated every time an element of the hierarchical list is expanded with a mouse click or keystroke.
  • On Collapse: This event is generated every time an element of the hierarchical list is collapsed with a mouse click or keystroke.
  • On Delete Action: This event is generated each time a user attempts to delete the selected item(s) by pressing a deletion key (Delete or Backspace) or selecting the Delete command from the Edit menu. Note that generating the event is the only action carried out by 4D: the program does not delete any items. It is up to the developer to handle the deletion and any prior warning messages that are displayed (see the example).

These events are not mutually exclusive. They can be generated one after another for a hierarchical list:
- Following a keystroke (in order):

EventContext
On Data ChangeElement was edited
On Expand/On CollapseOpening/Closing of a sublist using the -> or <- arrow keys
On Selection ChangeSelection of a new element
On ClickedActivation of the list using keyboard

- Following a mouse click (in order):

EventContext
On Data ChangeElement was edited
On Expand/On CollapseOpening/Closing of a sublist using the expand/collapse icons or
Double-click on non-editable sublist
On Selection ChangeSelection of a new element
On Clicked / On Double ClickedActivation of the list using click or double-click

  • The On Scroll form event is generated as soon as a user scrolls a picture within the area (field or variable) that contains it. You can scroll the contents of a picture area when the size of the area is smaller than its contents and the display format is "Truncated (non Centered)". For more information about this, refer to Picture formats.
    The event is generated when the scroll is the result of a user action: using the scroll bars and/or cursors, using the mouse wheel or the keyboard (for more information about scrolling using the keyboard, refer to Scroll bars). It is not generated when the object is scrolled due to the execution of the OBJECT SET SCROLL POSITION command. This event is triggered after any other user event related to the scrolling action (On Clicked, On After Keystroke, etc.). It is generated in the object method (not in the form method). Refer to example 14.
  • (New in v16) The On Mouse Up event is generated when the user has just released the left mouse button while dragging in a picture area (field or variable). This event is useful, for example, when you want the user to be able to move, resize or draw objects in a SVG area.
    When the On Mouse Up event is generated, you can get the local coordinates where the mouse button was released. These coordinates are returned in the MouseX and MouseY System Variables. The coordinates are expressed in pixels with respect to the top left corner of the picture (0,0).
    When using this event, you must also use the Is waiting mouse up command to handle cases where the "state manager" of the form is desynchronized, i.e. when the On Mouse Up event is not received after a click. This is the case for example when an alert dialog box is displayed above the form while the mouse button has not been released. For more information and an example of use of the On Mouse Up event, please refer to the description of the Is waiting mouse up command.

    Note: If the "Draggable" option is checked for the picture object, the On Mouse Up event is never generated. 

A subform container object (object included in the parent form, which contains one subform instance) supports the following events:

  • On Load and On Unload: respectively opening and closing of the subform (these events must also have been activated at the parent form level in order to be taken into account). Note that these events are generated before those of the parent form. Also note that, in accordance with the operating principles of form events, if the subform is placed on a page other than page 0 or 1, these events will only be generated when that page is displayed/closed (and not when the form is displayed/closed.
  • On Validate: validation of data entry in the subform.
  • On Data Change: the value of the variable of the subform object has been modified.
  • On Getting Focus and On Losing Focus: subform container just got or lost the focus. These events are generated in the method of the subform object when they are checked. They are sent to the form method of the subform, which means, for example, that you can manage the display of navigation buttons in the subform according to the focus.
    Note that subform objects can themselves have the focus.
  • On Bound Variable Change: This specific event is generated in the context of the form method of the subform as soon as a value is assigned to the variable bound with the subform in the parent form (even if the same value is reassigned) and if the subform belongs to the current form page or to page 0. For more information about managing subforms, please refer to the Design Reference manual.

Note: It is possible to specify any custom event type that could be generated in a subform via the CALL SUBFORM CONTAINER command. This command lets you call the container object method and to pass an event code to it.

Note: The On Clicked and On Double Clicked events generated in the subform are received first by the form method of the subform and then by the form method of the host form.

Seven form events are available specifically for Web areas:

  • On Begin URL Loading: This event is generated at the start of loading a new URL in the Web area. The "URL" variable associated with the Web area can be used to find out the URL being loaded.
    Note:
    The URL being loaded is different from the current URL (refer to the description of the WA Get current URL command).
  • On URL Resource Loading: This event is generated each time a new resource (picture, frame, etc.) is loaded on the current Web page.
    The "Progression" variable associated with the area lets you find out the current state of the loading.
  • On End URL Loading: This event is generated when all the resources of the current URL have been loaded.
    You can call the WA Get current URL command in order to find out the URL that was loaded.
  • On URL Loading Error: This event is generated when an error is detected during the loading of a URL.
    You can call the WA GET LAST URL ERROR command in order to get information about the error.
  • On URL Filtering: This event is generated when the loading of a URL is blocked by the Web area because of a filter set up using the WA SET URL FILTERS command.
    You can find out the blocked URL using the WA Get last filtered URL command.
  • On Open External Link: This event is generated when the loading of a URL was blocked by the Web area and the URL was opened with the current system browser, because of a filter set up via the WA SET EXTERNAL LINKS FILTERS command.
    You can find out the blocked URL using the WA Get last filtered URL command.
  • On Window Opening Denied: This event is generated when the opening of a pop-up window is blocked by the Web area. 4D Web areas do not allow the opening of pop-up windows.
    You can find out the blocked URL using the WA Get last filtered URL command.

This example shows the On Validate event being used to automatically assign (to a field) the date that the record is modified:

  //Method of a form
 Case of
  // ...
    :(Form event=On Validate)
       [aTable]Last Modified On:=Current date
 End case

In this example, the complete handling of a drop-down list (initialization, user clicks, and object release) is encapsulated in the method of the object:

  //asBurgerSize Drop-down list Object Method
 Case of
    :(Form event=On Load)
       ARRAY TEXT(asBurgerSize;3)
       asBurgerSize{1}:="Small"
       asBurgerSize{1}:="Medium"
       asBurgerSize{1}:="Large"
    :(Form event=On Clicked)
       If(asBurgerSize#0)
          ALERT("You chose a "+asBurgerSize{asBurgerSize}+" burger.")
       End if
    :(Form event=On Unload)
       CLEAR VARIABLE(asBurgerSize)
 End case

This example shows how, in an object method, to accept and later handle a drag and drop operation for a field object that only accepts picture values.

  //[aTable]aPicture enterable picture field object method
 Case of
    :(Form event=On Drag Over)
  //A drag-and-drop operation has started and the mouse is currently over the field
  //Get the information about the source object
       DRAG AND DROP PROPERTIES($vpSrcObject;$vlSrcElement;$lSrcProcess)
  //Note that we do not need to test the source process ID number
  //for the object method executed since it is in the same process
       $vlDataType:=Type($vpSrcObject->)
  //Is the source data a picture (field, variable or array)?
       If(($vlDataType=Is picture)|($vlDataType=Picture array))
  //If so, accept the drag.
          $0:=0
       Else
  //If so, refuse the drag
          $0:=-1
       End if
    :(Form event=On Drop)
  //The source data has been dropped on the object, we therefore need to copy it
  //into the object
  //Get the information about the source object
       DRAG AND DROP PROPERTIES($vpSrcObject;$vlSrcElement;$lSrcProcess)
       $vlDataType:=Type($vpSrcObject->)
       Case of
  //The source object is Picture field or variable
          :($vlDataType=Is picture)
  //Is the source object from the same process (thus from the same window and form)?
             If($lSrcProcess=Current process)
  //If so, just copy the source value
                [aTable]aPicture:=$vpSrcObject->
             Else
  //If not, is the source object a variable?
                If(Is a variable($vpSrcObject))
  //If so, get the value from the source process
                   GET PROCESS VARIABLE($lSrcProcess;$vpSrcObject->;$vgDraggedPict)
                   [aTable]aPicture:=$vgDraggedPict
                Else
  //If not, use CALL PROCESS to get the field value from the source process
                End if
             End if
  //The source object is an array of pictures
          :($vlDataType=Picture array)
  //Is the source object from the same process (thus from the same window and form)?
             If($lSrcProcess=Current process)
  //If so, just copy the source value
                [aTable]aPicture:=$vpSrcObject->{$vlSrcElement}
             Else
  //If not, get the value from the source process
                GET PROCESS VARIABLE($lSrcProcess;$vpSrcObject->{$vlSrcElement};$vgDraggedPict)
                [aTable]aPicture:=$vgDraggedPict
             End if
       End case
 End case

Note: For other examples showing how to handle On Drag Over and On Drop events, see the examples of the DRAG AND DROP PROPERTIES command.

This example is a template for a form method. It shows each of the possible events that can occur when a summary report uses a form as an output form:

  //Method of a form being used as output form for a summary report
 $vpFormTable:=Current form table
 Case of
  //...
    :(Form event=On Header)
  //A header area is about to be printed
       Case of
          :(Before selection($vpFormTable->))
  //Code for the first break header goes here
          :(Level=1)
  //Code for a break header level 1 goes here
          :(Level=2)
  //Code for a break header level 2 goes here
  //...
       End case
    :(Form event=On Printing Detail)
  //A record is about to be printed
  //Code for each record goes here
    :(Form event=On Printing Break)
  //A break area is about to be printed
       Case of
          :(Level=0)
  //Code for a break level 0 goes here
          :(Level=1)
  //Code for a break level 1 goes here
  //...
       End case
    :(Form event=On Printing Footer)
       If(End selection($vpFormTable->))
  //Code for the last footer goes here
       Else
  //Code for a footer goes here
       End if
 End case

This example shows the template of a form method that handles the events that can occur for a form displayed using the DISPLAY SELECTION or MODIFY SELECTION commands. For didactic purposes, it displays the nature of the event in the title bar of the form window.

  //A form method
 Case of
    :(Form event=On Load)
       $vsTheEvent:="The form is about to be displayed"
    :(Form event=On Unload)
       $vsTheEvent:="The output form has been exited and is about to disappear from the screen"
    :(Form event=On Display Detail)
       $vsTheEvent:="Displaying record #"+String(Selected record number([TheTable]))
    :(Form event=On Menu Selected)
       $vsTheEvent:="A menu item has been selected"
    :(Form event=On Header")
       $vsTheEvent:="The header area is about to be drawn"
    :(Form event=On Clicked")
       $vsTheEvent:="A record has been clicked"
    :(Form event=On Double Clicked")
       $vsTheEvent:="A record has been double clicked"
    :(Form event=On Open Detail)
       $vsTheEvent:="The record #"+String(Selected record number([TheTable]))+" is double-clicked"
    :(Form event=On Close Detail)
       $vsTheEvent:="Going back to the output form"
    :(Form event=On Activate)
       $vsTheEvent:="The form's window has just become the frontmost window"
    :(Form event=On Deactivate)
       $vsTheEvent:="The form's window is no longer the frontmost window"
    :(Form event=On Menu Selected)
       $vsTheEvent:="A menu item has been chosen"
    :(Form event=On Outside Call)
       $vsTheEvent:="A call from another has been received"
    Else
       $vsTheEvent:="What's going on? Event #"+String(Form event)
 End case
 SET WINDOW TITLE($vsTheEvent)

For examples on how to handle On Before Keystroke and On After Keystroke events, see examples for the Get edited text, Keystroke and FILTER KEYSTROKE commands.

This example shows how to treat clicks and double clicks in the same way in a scrollable area:

  //asChoices scrollable area object method
 Case of
    :(Form event=On Load)
       ARRAY TEXT(asChoices;...)
  //...
       asChoices:=0
    :((Form event=On Clicked)|(Form event=On Double Clicked))
       If(asChoices#0)
  //An item has been clicked, do something here
  //...
       End if
  //...
 End case


This example shows how to treat clicks and double clicks using a different response. Note the use of the element zero for keeping track of the selected element:

  //asChoices scrollable area object method
 Case of
    :(Form event=On Load)
       ARRAY TEXT(asChoices;...)
  // ...
       asChoices:=0
       asChoices{0}:="0"
    :(Form event=On Clicked)
       If(asChoices#0)
          If(asChoices#Num(asChoices))
  //A new item has been clicked, do something here
  //...
  //Save the new selected element for the next time
             asChoices{0}:=String(asChoices)
          End if
       Else
          asChoices:=Num(asChoices{0})
       End if
    :(Form event=On Double Clicked)
       If(asChoices#0)
  //An item has been double clicked, do something different here
       End if
  // ...
 End case

This example shows how to maintain a status text information area from within a form method, using the On Getting Focus and On Losing Focus events:

  //[Contacts];"Data Entry" form method
 Case of
    :(Form event=On Load)
       C_TEXT(vtStatusArea)
       vtStatusArea:=""
    :(Form event=On Getting Focus)
       RESOLVE POINTER(Focus object;$vsVarName;$vlTableNum;$vlFieldNum)
       If(($vlTableNum#0) & ($vlFieldNum#0))
          Case of
             :($vlFieldNum=1) //Last name field
                vtStatusArea:="Enter the Last name of the Contact; it will be capitalized automatically"
  //...
             :($vlFieldNum=10) //Zip Code field
                vtStatusArea:="Enter a 5-digit zip code; it will be checked and validated automatically"
  //...
          End case
       End if
    :(Form event=On Losing Focus)
       vtStatusArea:=""
  //...
 End case


This example shows how to respond to a close window event with a form used for record data entry:

  //Method for an input form
 $vpFormTable:=Current form table
 Case of
  //...
    :(Form event=On Close Box)
       If(Modified record($vpFormTable->))
          CONFIRM("This record has been modified. Save Changes?")
          If(OK=1)
             ACCEPT
          Else
             CANCEL
          End if
       Else
          CANCEL
       End if
  //...
 End case

This example shows how to capitalize a text or alphanumeric field each time its data source value is modified:

  //[Contacts]First Name Object method
 Case of
  //...
    :(Form event=On Data Change)
       [Contacts]First Name:=Uppercase(Substring([Contacts]First Name;1;1))+Lowercase(Substring([Contacts]First Name;2))
  //...
 End case

This example shows how to capitalize a text or alphanumeric field each time its data source value is modified:

  //[Contacts]First Name Object method
 Case of
  //...
    :(Form event=On Data Change)
       [Contacts]First Name:=Uppercase(Substring([Contacts]First Name;1;1))+Lowercase(Substring([Contacts]First Name;2))
  //...
 End case

The following example illustrates how to manage a deletion action in a hierarchical list:

 ... //method of hierarchical list
:($Event=On Delete Action)
 ARRAY LONGINT($itemsArray;0)
 $Ref:=Selected list items(<>HL;$itemsArray;*)
 $n:=Size of array($itemsArray)
 
 Case of
    :($n=0)
       ALERT("No item selected")
       OK:=0
    :($n=1)
       CONFIRM("Do you want to delete this item?")
    :($n>1)
       CONFIRM("Do you want to delete these items?")
 End case
 
 If(OK=1)
    For($i;1;$n)
       DELETE FROM LIST(<>HL;$itemsArray{$i};*)
    End for
 End if

In this example, the On Scroll form event allows us to synchronize the display of two pictures in a form. The following code is added in the "satellite" object method (picture field or variable):

 Case of
    :(Form event=On Scroll)
  // we take the position of the left picture
       OBJECT GET SCROLL POSITION(*;"satellite";vPos;hPos)
  // and we apply it to the right picture
       OBJECT SET SCROLL POSITION(*;"plan";vPos;hPos;*)
 End case

Result:

You want to draw a red rectangle around the selected cell of a list box, and you want the rectangle to move along with the list box if it is scrolled vertically by the user. In the list box object method, you can write:

 Case of
 
    :(Form event=On Clicked)
       LISTBOX GET CELL POSITION(*;"LB1";$col;$raw)
       LISTBOX GET CELL COORDINATES(*;"LB1";$col;$raw;$x1;$y1;$x2;$y2)
       OBJECT SET VISIBLE(*;"RedRect";True//initialize a red rectangle
       OBJECT SET COORDINATES(*;"RedRect";$x1;$y1;$x2;$y2)
 
    :(Form event=On Scroll)
       LISTBOX GET CELL POSITION(*;"LB1";$col;$raw)
       LISTBOX GET CELL COORDINATES(*;"LB1";$col;$raw;$x1;$y1;$x2;$y2)
       OBJECT GET COORDINATES(*;"LB1";$xlb1;$ylb1;$xlb2;$ylb2)
       $toAdd:=LISTBOX Get headers height(*;"LB1") //height of the header so as not to overlap it
       If($ylb1+$toAdd<$y1) & ($ylb2>$y2//if we are inside the list box
  //to keep it simple, we only handle headers
  //but we should handle horizontal clipping
  //as well as scroll bars
          OBJECT SET VISIBLE(*;"RedRect";True)
          OBJECT SET COORDINATES(*;"RedRect";$x1;$y1;$x2;$y2)
       Else
          OBJECT SET VISIBLE(*;"RedRect";False)
       End if
 
 End case

As a result, the red rectangle follows the scrolling of the list box:



See also 

CALL PROCESS
CALL SUBFORM CONTAINER
Current form table
DRAG AND DROP PROPERTIES
FILTER KEYSTROKE
Get edited text
Keystroke
SET TIMER

 
PROPERTIES 

Product: 4D
Theme: Form Events
Number: 388

 
HISTORY 

New
Modified: 4D v11 SQL Release 2
Modified: 4D v12
Modified: 4D v13
Modified: 4D v13.2
Modified: 4D v14
Modified: 4D v15
Modified: 4D v16

 
ARTICLE USAGE

4D Language Reference ( 4D v16)
4D Language Reference ( 4D v16.1)
4D Language Reference ( 4D v16.2)
4D Language Reference ( 4D v16.3)