Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Report not displaying on second page

Status
Not open for further replies.

paul123456

Technical User
Apr 29, 2002
518
US
How can i get the report header and page footer to display on each page? after i go to record number two and on it isn't displayed? Thanks, PAUL

 
Hi

By definition REPORT header is printed only once ie at the beginning of the report, if you want whatever you have in the report header to print as a heading on every page, then move it into the page header section.

The page footer should print at the bottom of each page, you are using a page header arent you rather than a REPORT footer which prints once only at the end of the report, in which case see above, if you do have a page footer, check your properties to ensure you do not have a property set which suppresses page footer Regards

Ken Reay
Freelance Solutions Developer
Boldon Information Systems Ltd
Website needs upgrading, but for now - UK
 
yep thats what it was..as soon as i changed it over it fix it and displayed it on each page plus only printed one page. I for another question.. i have a form with a print button. when u hit the print button it open another form with four buttons, each being a different report to print the current user. on one of those buttons it doesn't work. and i think its because i have the [social] as a record source in the report. here is the command for the button that i used the error it gives me is "enter parameter value"

Private Sub Command19_Click()
On Error GoTo Err_Command19_Click


Dim stDocName As String
Dim stLinkCriteria As String

stDocName = "Report1"
stLinkCriteria = "[SocSec]=" & "'" & Me![SocSec] & "'"
DoCmd.OpenReport stDocName, , , stLinkCriteria

Exit_Command19_Click:
Exit Sub

Err_Command19_Click:
MsgBox Err.Description
Resume Exit_Command19_Click

End Sub Thanks, PAUL

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top