DblClick (Area as Integer) Event

Occurs when the user double clicks the mouse in a drop-down list (combo) box object in the run Time environment.

Syntax

object_DblClick( 1 | 2 | 3 )

Parameters

The DblClick event syntax has these parts:

Part

Description

object

An object expression that evaluates to an object in the Applies To list.

1

A double-click in the default display area of the drop-down list box.

2

A double-click on the arrow of the drop-down list box.

3

A double-click in the drop-down area of the list box.

NOTE (CIMPLICITY USERS ONLY): The event handler above is named in accordance with the standard VBA naming convention. In CIMPLICITY, this convention is not followed and the default name for this event handler is OnDblClick.  You can use a name of your own choice for the event handler and use the Event tab to associate it with the ActiveX event in question. For some events you may notice that there are already handlers, in which case you should add your own processing to the existing handlers rather than replacing them.

Remarks

The DblClick event occurs when multiple left mouse clicks are received in the object.

The sequence of mouse-related events is:

Click

DblClick

See Also

Applies to