MS Access 2003 on WIN XP, MDB file.
I am deleting a table in the current MDB file so I can copy it from another MDB file using this code:
But it's in a relationship. How do I delete the relationship first so I can delete the table?
Thanks.
I am deleting a table in the current MDB file so I can copy it from another MDB file using this code:
Code:
DoCmd.DeleteObject acTable, "oldTable"
Thanks.