RecordSourceQualifier Property

Microsoft Access Visual Basic

expression.RecordSourceQualifier

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

Example

The following example displays all the record source information for the specified form.

With Forms(0)
    MsgBox "Record Source: " & .RecordSource & vbCr _
        & "Record Source Qualifier: " _
        & .RecordSourceQualifier
End With