June,
It turns out that even though the "auto-fill" list given by the VBA editor doesn't list all properties of a control, it is valid to code them.
Code:
' Since the printed posting will be viewed by many seniors, we're going to
' increase the size of the text to a size more appropriate. The changes to
' the controls are not permanent, so it's not necessary to restore the design
' values. All the values used here are in direct proportion to the overall
' design. The desired "inch" values are entered in twips.
Me.tbName.Height = 400
Me.tbName.Width = 5340
Me.tbName.FontSize = 18
Me.Detail.Height = 500
Thanks,
Bill