Sub tryit()
Dim prp
Dim dbs As Database
Dim tdf As TableDef
'just the description
Set dbs = CurrentDb
Set tdf = dbs.TableDefs("mytable")
MsgBox (tdf.Properties("description"))
'everything
For Each prp In tdf.Properties
MsgBox ("Name: " & prp.Name & " Value: " & prp.Value)
Next
End Sub
Dim doc As DAO.Document
With CurrentDb.Containers!Forms
For Each doc In .Documents
MsgBox "Form " & doc.Name & " - " & doc.Properties("Description")
Next doc
End With