DoCmd.RunCommand Method (Access)

The RunCommand method runs a built-in command.

Syntax

expression .RunCommand(Command)

expression A variable that represents a DoCmd object.

Parameters

Name

Required/Optional

Data Type

Description

Command

Required

AcCommand

An AcCommand constant that specifies the commend to run.

Remarks

Each menu and toolbar command in Microsoft Access has an associated constant that you can use with the RunCommand method to run that command from Visual Basic.

You can't use the RunCommand method to run a command on a custom menu or toolbar. You can only use it with built-in menus and toolbars.

The RunCommand method replaces the DoMenuItem method of the DoCmd object.

See Also

Concepts

DoCmd Object

DoCmd Object Members