RecordSourceQualifier Property
Returns or sets a String indicating the SQL Server owner name of the record source for the specified form or report. Read/write.
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