Tables

  • Thread starter Thread starter Guest
  • Start date Start date
Yes - click on the Tables tab in the Database window! :-)

OK, I guess you meant programatically? If so, and assuming Access 2000 or
later ...

Public Sub ListTables(ByVal SystemTables As Boolean)

Dim aob As AccessObject

For Each aob In CurrentData.AllTables
If SystemTables Or UCase$(Mid$(aob.Name, 2, 3)) <> "SYS" Then
Debug.Print aob.Name
End If
Next aob

End Sub
 
Back
Top