Check table definition : Table Properties « Access « VBA / Excel / Access / Word






Check table definition

 
Sub exaCheckTableDefs()
    Dim db As Database
    Dim tbl As TableDef
    Set db = CurrentDb
    
    Debug.Print db.TableDefs.Count
    
    For Each tbl In db.TableDefs
        Debug.Print tbl.Name & vbTab & TypeName(tbl)
    Next
End Sub

 








Related examples in the same category

1.List table types
2.Listing Table Properties
3.Checking for Existence of Tables
4.Get Table documents
5.Table documents