Public Sub GetBackEndPath()
Dim strPath As String
Dim tdf As TableDef
Set tdf = CurrentDb.TableDefs("tblOpenLink")
' Runtime error 3420 'Object invalid or
' no long set on following instruction
strPath = Mid(tdf.Connect, InStr(tdf.Connect, "=") + 1)
Debug.Print strPath
End Sub