N
News Server
Well, there might be something pretter, but this is working for now.
Private Sub GroupFooter3_Print(Cancel As Integer, PrintCount As Integer)
If Detail.Height < 50 Then
Cancel = True
End If
End Sub
I added some code the footer print event. If the height of the detail
section is less then height that two records would take up, then cancel the
printing of the group footer section.
I don't like this method too much. I would like to find some property that
tells me how many records are in the detail section without monitoring
height, but this works for now.
DJ
Private Sub GroupFooter3_Print(Cancel As Integer, PrintCount As Integer)
If Detail.Height < 50 Then
Cancel = True
End If
End Sub
I added some code the footer print event. If the height of the detail
section is less then height that two records would take up, then cancel the
printing of the group footer section.
I don't like this method too much. I would like to find some property that
tells me how many records are in the detail section without monitoring
height, but this works for now.
DJ