CODE
Select Case Me.RecordsetClone.RecordCount
Case Is < 6
Me.ScrollBars = 0
Case Else
Me.ScrollBars = 2
End Select
Case Is < 6
Me.ScrollBars = 0
Case Else
Me.ScrollBars = 2
End Select
Which seems to work well, with one problem. I placed the code in the OnCurrent event of the subform so that as I delete and add records in the subform, it constantly recalculates whether or not it needs the scrollbars. The problem I am running into is if the I delete all of the records, or if I open the main form to a record that contains no records in the subform, the OnCurrent event never fires (presumably because because without any records in the subform, there can't be a current record). Does anyone know a way around this?