How can an Access Subform add row height like Excel Autofit?

  • Thread starter Thread starter Rod Carroll
  • Start date Start date
I don't think you can autofit the height in Access, but Stephen Lebans may
have something to do so at his website:

http://www.lebans.com

You can, of course, drag the row height to change the height of all rows, or
you can use the format menu to do that. And you can even set in from VBA:

Private Sub Form_Open(Cancel As Integer)
Me.RowHeight = 720 ' Pixels (1440 pixels to the inch)
End Sub
 
Back
Top