Hey,
to remove the link either delete the tables from the database (the one with the linked tables, not the source table of course). Or, you can do it through VBA by setting to connect property to "".
Dim tblLinked As TableDef
Set tblLinked = CurrentDb.TableDefs(YourTable)
tblLinked.Connect = ""
Where can I put this code to get executed so that my tables are unlinked. One more thinr. I am facing another problem I am unable to create a replica if I make some changes in the design of the tables.
I am running a frontend on several PC's and backend on my server I need to add a few new fields into my table
When I try and do this I get a message"table orders is a linked table with some properties that cannot be modified"
Can anyone please advise I am new to Access so be gentle
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.