Skip to content

Latest commit

 

History

History
45 lines (25 loc) · 1.68 KB

Access.Attachment.OnMouseDown.md

File metadata and controls

45 lines (25 loc) · 1.68 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Attachment.OnMouseDown property (Access)
vbaac10.chm13947
vbaac10.chm13947
Access.Attachment.OnMouseDown
71ba8a45-7814-4939-b8cf-9b07d9e04b4d
02/07/2019
medium

Attachment.OnMouseDown property (Access)

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

Syntax

expression.OnMouseDown

expression A variable that represents an Attachment object.

Remarks

This property is helpful for programmatically changing the action that 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 MouseDown event occurs when the user clicks the mouse button while the mouse pointer rests over the object.

The OnMouseDown value will be one of the following, depending on the selection chosen in the Choose Builder window (accessed by choosing the Build button next to the On Mouse Down box in the object's Properties window):

  • If you choose Expression Builder, the value will be =expression, where expression is the expression from the Expression Builder window.

  • If you choose Macro Builder, the value is the name of the macro.

  • If you choose Code Builder, the value will be [Event Procedure].

If the On Mouse Down box is blank, the property value is an empty string.

[!includeSupport and feedback]