Carl, rather than trying to fill the gap, how about drawing those line with
code in the Page event of the report?
This kind of thing:
Private Sub Report_Page()
Me.Line (Me.ScaleTop, Me.ScaleLeft)-(Me.ScaleTop, Me.ScaleHeight), vbRed
End Sub
--
Allen Browne - Microsoft MVP. Perth, Western Australia.
Tips for Access users -
http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.
"Carl Rapson" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> I'm using the Line method to draw vertical lines around my report.
> Depending on where the page break occurs, there may be some "white" space
> between the last detail lines that print on the report and the top of the
> page footer section; as a result there is a gap between the end of the
> lines in the detail section and the top of the lines in the page footer
> section. What's a good way to "extend" the vertical lines down to the
> beginning of the page footer section?
>
> Thanks for any assistance,
>
> Carl Rapson