Can i do serial No like 1.2.3.4 etc for evry page alone in one report contain 10 pages .
Ashraf
Can i do serial No like 1.2.3.4 etc for evry page alone in one report contain 10 pages .
Ashraf

This month, every Windows Secrets subscriber can download a one-chapter excerpt of Windows 7: The Missing Manual.Windows 7: The Missing Manual provides valuable information to help you overcome these difficulties in learning a new operating system. Subscribe today to download your free excerpt.
Put an unbound text box txtSerial in the Detail section of the report.
Add the following code to the report module:
Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
If FormatCount = 1 Then
Me.txtSerial = Me.txtSerial + 1
End If
End Sub
Private Sub PageHeaderSection_Format(Cancel As Integer, FormatCount As Integer)
If Me.Page > 1 Then
Me.txtSerial = 1
End If
End Sub
Private Sub ReportHeader_Format(Cancel As Integer, FormatCount As Integer)
Me.txtSerial = 0
End Sub
I'm a little confused. Do you just want to print the Page Number on the report?
Mark Liquorman
See my website for Tips & Downloads and for my Liquorman Utilities.
Hello Hanz i do it already but not that i want no serial i found .
See report ( r_serial )
Ashraf
Up
I cannot make the report in your database at all, because my version of Windows/Access does not understand Arabic. I have attached a demo created in an English language version of Windows/Access. I don't know if it will work on your system.
What do you mean by this?
ur attachment file work good but the same i do in my mdb and my mdb not work . i try to found the rong .
UP= to make my subjext above .
Thanks
Ashraf
It's OK to "bump" a thread if you don't get a reply for many days, but your previous post was only 8 hours before. As I have told you before, you shouldn't be so impatient - you cannot expect Loungers to reply immediately. We all have other things to do beside answering questions in the Lounge.
Make sure that you use the correct name for the sections of your report in the code. I used the default English language names Detail, PageHeaderSection and ReportHeader, but in your Arabic language version they have different names.