S
seeker
The following code is used to place a number in front of a record on a report:
Private Sub GroupHeader0_Print(Cancel As Integer, PrintCount As Integer)
intcounter = intcounter + 1
txtNumber = intcounter
End Sub
When the report is on the screen the numbers are correct (1 - 64) but when I
print the report the numbers are 65 - 129. How can i keep this from
happening. When the report opens incounter is initialized to 0.
Private Sub GroupHeader0_Print(Cancel As Integer, PrintCount As Integer)
intcounter = intcounter + 1
txtNumber = intcounter
End Sub
When the report is on the screen the numbers are correct (1 - 64) but when I
print the report the numbers are 65 - 129. How can i keep this from
happening. When the report opens incounter is initialized to 0.