Skip to content

OnDropDown - EntryList

Fires when combo form's dropdown list drops down

Type: Event

Parameters

Parameter Type Description
iItem Integer Grid item containing the combo form

Syntax

Procedure OnDropDown Integer iItem

Description

Fires when combo form's dropdown list drops down.

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

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