DoCmd.CopyObject 2002 vs 2003

T

Turtle_T

I have a 2002 client database that links to 2000 server db's. The
functionality of the client side uses common table names across multiple
identical database structures but different data. I use the CopyObject
command to copy the different links to the common table names that the
forms/queries use. This works fine in 2000 & 2002.

However, when I tested this on a 2003 system, the CopyOject function does an
Import of the table, not copying the link. Of course this is useless to me
since any changes would only be to a local table.

Is there a setting I'm missing or a better way to do this?

Example table names
01_tbl_Master
02_tbl_Master...
tbl_Master => used by the programming
DoCmd.CopyObject, "tbl_Master", acTable, "01_tbl_Master"
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top