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
 

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

Back
Top