Vertical Lines in a report

J

Janis in Minnesota

Is there a way to create a vertical column line that starts in the header of
a report and goes down the report vertically throught the detail section to
the footer of the report? Any help would be wonderful! Thanks!
 
D

Duane Hookom

You can add code to the On Page event of the report

Private Sub Report_Page()
Me.ForeColor = vbRed
Me.DrawWidth = 5
'change the numbers to change the position
Me.Line (1440, 0)-Step(0, 20000)
End Sub
 
Top