Form.MinMaxButtons property (Access)

Use the MinMaxButtons property to specify whether the Maximize and Minimize buttons will be visible on a form. Read/write Byte.

Syntax

expression.MinMaxButtons

expression A variable that represents a Form object.

Remarks

The MinMaxButtons property uses the following settings.

Setting Visual Basic Description
None 0 The Maximize and Minimize buttons aren't visible.
Min Enabled 1 Only the Minimize button is visible.
Max Enabled 2 Only the Maximize button is visible.
Both Enabled 3 (Default) Both the Minimize and Maximize buttons are visible.

You can set the MinMaxButtons property only in form Design view.

Choosing a form's Maximize button enlarges the form so that it fills the Microsoft Access window. Choosing a form's Minimize button reduces the form to a short title bar at the bottom of the Access window.

To display the Maximize and Minimize buttons on a form, you must set the form's BorderStyle property to Thin or Sizable and the ControlBox property to Yes. If you set the BorderStyle property to None or Dialog, or if you set the ControlBox property to No, the form won't have Maximize or Minimize buttons, regardless of the MinMaxButtons property setting.

Even when the MinMaxButtons property is set to None, a form always has Maximize and Minimize buttons in Design view.

If a form's MinMaxButtons property is set to None, the Maximize and Minimize commands aren't available on the form's Control menu.

Example

The following example returns the value of the MinMaxButtons property for the Order Entry form.

Dim b As Byte 
b = Forms("Order Entry").MinMaxButtons

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.