This gives me a layout of a table in the debug screen. How can this be alterd to show in a report?
Public Sub fieldProperties()
Dim tblStandeardLayout As String
Dim rs As DAO.Recordset
Dim fld As DAO.Field
Set rs = CurrentDb.OpenRecordset("tblStandardLayout")
For Each fld In rs.Fields
Debug.Print fld.Name & " " & fld.Size
Next fld
End Sub
Public Sub fieldProperties()
Dim tblStandeardLayout As String
Dim rs As DAO.Recordset
Dim fld As DAO.Field
Set rs = CurrentDb.OpenRecordset("tblStandardLayout")
For Each fld In rs.Fields
Debug.Print fld.Name & " " & fld.Size
Next fld
End Sub