data path

  • Thread starter Thread starter Jorge Novoa
  • Start date Start date
J

Jorge Novoa

Hi,
I got a question in the same way to Patrick's about the path, BUT I want to
know the path of the data, on a splited application (server and client
mdb's). In my application I do get the path of the current DB wich is the
client file, ¿how to get the path to the tables file?

thanx!

Jorge Novoa
F.A. Arias & Muñoz
El Salvador, C.A.
 
If you've got a reference set to DAO, you can determine the database for any
linked table by looking at CurrentDb().TableDefs("MyTable").Connect.

Replace MyTable with the appropriate table name.
 
Back
Top