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 tjDb As DAO.Database
Dim tjTab As DAO.TableDef
Set tjDb = CurrentDb
For Each tjTab In tjDb.TableDefs
If (tjTab.Attributes And dbSystemObject) = 0 Then
MsgBox tjTab.Name
' Or add to list or whatever else you want to do
End If
Next
tjDb.Close
Set tjTab = Nothing
Set tjDb = Nothing