A
Anthony
How do I loop through all the tables in an external database, and check to
see if it is a linked table:
something like this:
Set acc = CreateObject("Access.Application")
acc.OpenCurrentDatabase ("\\Van-citrix\Van-Citrix Volume
1\Apps\CST\CST_SUM_FRONT_END.mdb")
For j = 0 To acc.CurrentData.AllTables.Count - 1
With acc.CurrentData.AllTables
' here's where I don't know how to check to see if the table is
a linked table
End With
Next j
see if it is a linked table:
something like this:
Set acc = CreateObject("Access.Application")
acc.OpenCurrentDatabase ("\\Van-citrix\Van-Citrix Volume
1\Apps\CST\CST_SUM_FRONT_END.mdb")
For j = 0 To acc.CurrentData.AllTables.Count - 1
With acc.CurrentData.AllTables
' here's where I don't know how to check to see if the table is
a linked table
End With
Next j