DoCmd.OpenDiagram Method (Access)

The OpenDiagram method carries out the OpenDiagram action in Visual Basic.

Syntax

expression .OpenDiagram(DiagramName)

expression A variable that represents a DoCmd object.

Parameters

Name

Required/Optional

Data Type

Description

DiagramName

Required

Variant

A string expression that's the valid name of a database diagram in the current database. If you execute Visual Basic code containing the OpenDiagram method in a library database, Microsoft Access looks for the database diagram with this name first in the library database, then in the current database.

Remarks

In a Microsoft Access project, you can use the OpenDiagram method to open a database diagram in Design view.

Example

The following example opens the database diagram named "Data Model".

DoCmd.OpenDiagram " Data Model"

See Also

Concepts

DoCmd Object

DoCmd Object Members