W
Wavequation
Is there a way to determine programmatically the directory path to the .mdb
file a database is based on?
file a database is based on?
Wavequation said:Is there a way to determine programmatically the directory path to the
.mdb
file a database is based on?
Wavequation said:Is there a way to determine programmatically the directory path to the .mdb
file a database is based on?
Marshall Barton said:The DAO object structure for the full path to a linked table
in an mdb file is:
Mid(CurrentDb.TableDefs![linked table name].Connect, 11)
--
Marsh
MVP [MS Access]
Thanks Marshall, actually, I've decided to use the backend. How exactly do I
access the connect property of a linked table?