Report lines

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

When printing a report in Access 2003 I would like to print seperation lines,
both horizonal and vertival to seperate each record. Is there a way to auto.
add this feature?

Thanks

Peter
 
I don't know of a way to "auto-add" them. Simply go into design view and
use the line tool to draw lines where you want them (most likely at the top
or bottom of the detail section).
 
Another method is using the Line method of the report. For instance, to
place a horizontal line at the bottom of the Page Header section, use this
code:

Private Sub PageHeaderSection_Format( Cancel As Integer, FormatCount As
Integer)
Me.DrawWidth = 10
Me.Line (0, Me.PageHeaderSection.Height)-Step(Me.Width, 0)
End Sub
 
Back
Top