Linked tables with no associated tables in backend

G

Guest

I have cases where the front end show a table as linked, but there is no
associated table in the backend. (evidently, i removed the table from
backend but did not remove it from the frontend.). Is there a routine that
checks for such cases?
 
G

Guest

air code

dim db as dao.database
dim tdf as dao.tabledef

set db = codedb.
for each tdf in db.tabldefs.
if tdf.connect <> "" then
tdf.RefreshLink
endif
next tdf


(david)
 

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