Skip to content

OnCloseUp - EntryList

Called when combo form's dropdown list closes

Type: Event

Parameters

Parameter Type Description
iItem Integer Grid item containing the combo form

Syntax

Procedure OnCloseUp Integer iItem

Description

Fires when combo form's dropdown list closes.

You can use this procedure to add event handling when a combo form's dropdown list closes:

Procedure OnCloseUp item iItem
    if (iItem = 2) begin
        :
        // add event handling here for closing of list for item 2
        :
    end
End_Procedure  // OnCloseUp