DoCmd.Quit Method (Access)

The Quit method quits Microsoft Access. You can select one of several options for saving a database object before quitting.

Syntax

expression .Quit(Options)

expression A variable that represents a DoCmd object.

Parameters

Name

Required/Optional

Data Type

Description

Options

Optional

AcQuitOption

An AcQuitOption constant that indicates the action to take when quitting Access. The default value is acQuitSaveAll.

Remarks

The Quit method of the DoCmd object was added to provide backward compatibility for running the Quit action in Visual Basic code in Microsoft Access 95. It's recommended that you use the existing Quit method of the Application object instead.

See Also

Concepts

DoCmd Object

DoCmd Object Members