M
Mario
How to draw a line after 120 records in a report?
Mario said:How to draw a line after 120 records in a report?
Vladimír Cvajniga said: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