Hi, Mario,
you can count records in Deatil_Print, for example. Then, if RecordCound mod
120 = 0, simply draw a line.
Dim lngRecCnt As Long
Private Sub Detail_Print(Cancel As Integer, PrintCount As Integer)
lngRecCnt = lngRecCnt + 1
If lngRecCnt Mod 120 = 0 Then
Me.Line (0, 0)-(14400, 0)
End If
End Sub
Be sure to use 14400, it's "an arbitrary number to increase the line to
the max of a section" (taken from Microsoft sample MDB). Don't forget to add
an error-handling-code. ;-)
HTH.
Vlado