G
Guest
I have a report that I need to have the numbers 1-7 on. It does no
matter how many pages are in the report. Each page must be numbere
sequentially 1-7, return to 1 to start the numbering proces
again
Anyone have any ideas how to go about this or even a direction to point m
in? I am thinking that I will have to use VBA behind my report to driv
this function...I would like for it to run a control
I tried one suggestion, but when you skip to the end of the report and go back to page one, the numbering changes. Also, this suggestion did not run from a control
Private Sub Report_Page(
Static pgNumber As Intege
pgNumber = pgNumber +
Me.ForeColor = vbBlu
Me.FontItalic = Tru
Me.FontBold = Tru
Me.CurrentX = 200
Me.CurrentY = 1
Me.Print CStr(pgNumber
If pgNumber >= 7 Then pgNumber =
End Su
Any help would be greatly appreciated
Thank you in advanc
David
matter how many pages are in the report. Each page must be numbere
sequentially 1-7, return to 1 to start the numbering proces
again
Anyone have any ideas how to go about this or even a direction to point m
in? I am thinking that I will have to use VBA behind my report to driv
this function...I would like for it to run a control
I tried one suggestion, but when you skip to the end of the report and go back to page one, the numbering changes. Also, this suggestion did not run from a control
Private Sub Report_Page(
Static pgNumber As Intege
pgNumber = pgNumber +
Me.ForeColor = vbBlu
Me.FontItalic = Tru
Me.FontBold = Tru
Me.CurrentX = 200
Me.CurrentY = 1
Me.Print CStr(pgNumber
If pgNumber >= 7 Then pgNumber =
End Su
Any help would be greatly appreciated
Thank you in advanc
David