Report Design

S

Sue

I added some border lines to my report design. and the
results did not seem preety, there is always a big gap for
the last page (only 2 or 3 rows )between the vertical line
(detail) and bottom line (page footer).


Is there a way to avoid this?
 
D

Duane Hookom

Don't use controls on your report. Try add code to the On Page Event of your
report:
Private Sub Report_Page()
Me.Line (0, 0)-Step(Me.Width, 12000), , B
End Sub
The 12000 will depend on the height of your report.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top