Table of Contents

DBLCLK event

Description

Occurs when a user double-clicks the mouse button over a control.

Syntax

bforward = DBLCLK(ctrlentID, ctrlclassID, ctrlkey, shiftkey, mousebutton)

Parameters

DBLCLK accepts arguments for the following parameters.

ParameterDescription
ctrlentIDHas the format WindowName.ControlName, where WindowName is the identifier of the window that contains the affected control, and ControlName is the identifier of the control. Notice that a period separates the two values.
ctrlclassIDThe type of control that recognizes the event. Valid entries are:

Type - Description
COMBOBOX - Combo box.
EDITTABLE - Edit table.
ICON - Icon.
LISTBOX - List box.
ctrlkeyTrue (1), if the ctrl key is pressed. False (0), if the ctrl key is not pressed.
shiftkeyTrue (1), if the shift key is pressed. False (0), if the shift key is not pressed.
mousebuttonA "0" indicates that the left or center mouse button was pressed. A "1" indicates that the right button was pressed.

Returns

True or false. If false, the program execution returns to the calling procedure. If true, the event processing goes to the next level.

See Also

BUTTONDOWN event , BUTTONUP event, CLICK event