Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Dim cat As Catalog
Set cat = New Catalog
cat.ActiveConnection = CurrentProject.Connection
Dim tbl As Table
For Each tbl In cat.Tables
If tbl.Name Like "MSys*" Then
' Skip this line because it is a System Table
Else
Debug.Print tbl.Name
End If