I'm afraid I don't have a solution for your Help problem, but the answer to
your original question is:
strBackendDatabase = Mid(CurrentDb().TableDefs("NameOfLinkedTable").Connect,
11)
The reason for the Mid statement is that the Connection property will have
;Database= in front of the name.
Note that that's DAO. Access 2000 doesn't set a reference to DAO by default:
if you haven't already done so, you'll have to.
With any code module open, select Tools | References from the menu bar,
scroll through the list of available references until you find the one for
Microsoft DAO 3.6 Object Library, and select it.