Skip to content

Latest commit

 

History

History
47 lines (28 loc) · 1.24 KB

Access.DoCmd.OpenDiagram.md

File metadata and controls

47 lines (28 loc) · 1.24 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
DoCmd.OpenDiagram method (Access)
vbaac10.chm4650
vbaac10.chm4650
Access.DoCmd.OpenDiagram
a9736e57-eb82-77d7-c57a-8c793333392a
03/07/2019
medium

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, and 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"

[!includeSupport and feedback]