If I want to delete a table that is in the database, I write:
On Error Resume Next
CurrentDb.TableDefs.Delete "Pol"
But what if the table is a linked table?
How do i delete the table/delete the link?
Thank you!
On Error Resume Next
CurrentDb.TableDefs.Delete "Pol"
But what if the table is a linked table?
How do i delete the table/delete the link?
Thank you!