Report.OnDblClick Property

Access Developer Reference

Sets or returns the value of the On Dbl Click box in the Properties window. Read/write String.

Version Information
 Version Added:  Access 2007

Syntax

expression.OnDblClick

expression   A variable that represents a Report object.

Remarks

This property is helpful for programmatically changing the action Microsoft Access takes when an event is triggered. For example, between event calls you may want to change an expression's parameters, or switch from an event procedure to an expression or macro, depending on the circumstances under which the event was triggered.

The DblClick event occurs when a user presses and releases the left mouse button twice over an object within the double-click time limit of the system.

The OnDblClick value will be one of the following, depending on the selection chosen in the Choose Builder window (accessed by clicking the Build button next to the On Dbl Click box in the report's Properties window):

  • If Expression Builder is chosen, the value will be "=expression", where expression is the expression from the Expression Builder window.
  • If Macro Builder is chosen, the value is the name of the macro.
  • If Code Builder is chosen, the value will be "[Event Procedure]".

If the On Dbl Click box is blank, the property value is an empty string.

Example

The following example associates the DblClick event with the "OK_DblClick" event procedure for the button named "OK" on the "Catalog" report, if there is currently no association.

Visual Basic for Applications
  With Reports("Catalog").Controls("OK")
    If .OnDblClick = "" Then
       .OnDblClick = "[Event Procedure]"
    End If
End With

See Also

  • Create a macro