You can't. It's been a sore point with many of us for years.
If you want to see what your links are, you can write a routine to dump the
information. Assuming you have a reference set to DAO, the following will
print your links to the Debug window:
Sub PrintLinks()
Dim dbCurr As Database
Dim tdfCurr As TableDef
Set dbCurr = CurrentDb()
For Each tdfCurr In dbCurr.TableDefs
If Len(tdfCurr.Connect) > 0 Then
Debug.Print tdfCurr.Name & " is linked to " & tdfCurr.Connect
End If
Next tdfCurr
Set tdfCurr = Nothing
Set dbCurr = Nothing
End Sub