BatchUpdates Property

Microsoft Access Visual Basic

BatchUpdates Property

       

Returns or sets a Boolean indicating whether the specified form supports transacted batch updates. True if batch updates are supported. Read/write.

expression.BatchUpdates

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

Remarks

This property can only be changed during design time. During run time, it is read-only.

Example

The following example checks the specified form to see if it supports batch updates and displays a message reporting the result.

With Forms(0)
    If .BatchUpdates = True Then
        MsgBox "The """ & .Name & """ form supports batch updates."
    Else
        MsgBox "The """ & .Name & """ form does not support batch updates."
    End If
End With