Vertical Lines in a report

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

Guest

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!
 
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
 
Back
Top