G
Gary S
I would like to display what database a table is linked to using code. What
is the easiest way of doing that?
is the easiest way of doing that?
Gary said:I would like to display what database a table is linked to using code. What
is the easiest way of doing that?
You may also consider creating a query on the MSysObjects Table (hidden).Marshall Barton said:If the real table is in another Access database, you could
use a text box with an expression like:
=Mid(CurrentDb.TableDefs("table name").Connect, 11)