JasonSummers
Programmer
I have used the following code for my access 2000 report to generate a report (page) border.
Private Sub Report_Page()
Me.Line (0, 0)-(Me.ScaleWidth, Me.ScaleHeight), , B
End Sub
However, the right side border (and sometimes the top or bottom) does not show. It does not print on another page, and it is missing regardless of how the remainder of the page dimensions are set.
This code works fine for reports set to PORTRAIT view, but I have this problem when I set my page to LANDSCAPE view.
Another thing, it may just not be showing in the print preview of the report, because when I print to Adobe, the borders show up just fine.
Any suggestions?
Private Sub Report_Page()
Me.Line (0, 0)-(Me.ScaleWidth, Me.ScaleHeight), , B
End Sub
However, the right side border (and sometimes the top or bottom) does not show. It does not print on another page, and it is missing regardless of how the remainder of the page dimensions are set.
This code works fine for reports set to PORTRAIT view, but I have this problem when I set my page to LANDSCAPE view.
Another thing, it may just not be showing in the print preview of the report, because when I print to Adobe, the borders show up just fine.
Any suggestions?