DoCmd Property

Microsoft Access Visual Basic

object and its related methods.

expression.DoCmd

expression    Required. An expression that returns one of the objects in the Applies To list.

Remarks

This property is available only by using Visual Basic.

Example

The following example opens a form in Form view and moves to a new record.

Sub ShowNewRecord()
    DoCmd.OpenForm "Employees", acNormal
    DoCmd.GoToRecord , , acNewRec
End Sub