Solved Count Linked Tables

Kha

Member
Local time
Today, 17:53
Joined
Sep 4, 2022
Messages
57
Hi
I want to make sure that I have 5 tables linked to my FE DB because I don't want to miss any one by mistake
So how can I count how many tables are linked to my FE DB?
 
You could try DCount(). For example:
Code:
DCount("*", "MSysObjects", "Type=6")
(untested)
 
  • Like
Reactions: Kha
Thank you very much
 

Users who are viewing this thread

Back
Top Bottom