A Arvin Meyer [MVP] Aug 26, 2009 #2 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
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