For table properties:
Code:
Dim o As Object, p As Property, db As DAO.Database
Set db = Application.CurrentDb
Set o = db.Containers("tables").Documents("your table name")
On Error Resume Next
For Each p In o.Properties
Debug.Print p.Name & vbTab & vbTab & p.value
Next p
Set o = Nothing
Set db = Nothing
Getting content of field Description property:
Code:
Dim db As Database, tdf As TableDef, fld As Field
Set db = CurrentDb() 'change this to OpenDatabase on the BE db if your app is split
Set tdf = db.TableDefs("table name")
Set fld = tdf.Fields("field name")
On Error Resume Next 'will error if there is no info in this property
Debug.Print fld.Properties("Description")
Set tdf = Nothing
Set fld = Nothing
Set db = Nothing
Expand code to cycle through tables and fields.
Otherwise, use SnippingTool to get screenshots.