How to put the text in the page 2 of report in the bottom of the page?

pwint

New member
Local time
Today, 09:53
Joined
Jan 14, 2010
Messages
3
I have 2 pages report and when I check the print preview, the text in the second page appear in the middle of the page.
I want it to appear in the near bottom of the page.
I have already added the line break but it still appears in the middle.
How can I put it down the text? Thank you.
 

Attachments

  • test print.png
    test print.png
    5.2 KB · Views: 42
What section is that?

Did you mean page break instead of line break?
 
either you put it on Page footer or Add a "dummy" blank lines to your report.
 
arnelgp has the right ideas. You can also use code in the report to set the CurrentX and CurrentY then Me.Print.

Code:
Private Sub Report_Page()
    If Me.Page = Me.Pages Then
        Me.CurrentX = 500
        Me.CurrentY = 10 * 1440
        Me.Print "this is near the bottom left"
    End If
End Sub
 

Users who are viewing this thread

Back
Top Bottom