Form.MaxRecButton Property (Access)

You can use the MaxRecButton property to specify or determine if the maximum record limit button is available on the navigation bar of a form in Datasheet view or Form view. Read/write Boolean.

Syntax

expression .MaxRecButton

expression A variable that represents a Form object.

Remarks

This property is only available for forms within a Microsoft Access project (.adp).

The default value is True.

Example

This example makes the maximum record limit button on the "Order Entry" form unavailable to the user.

Forms("Order Entry").MaxRecButton = False

See Also

Concepts

Form Object Members

Form Object