Boarders all around Report

  • Thread starter Thread starter Bryan
  • Start date Start date
B

Bryan

Hi. I'm kind of new at access. Does anyone know how to put
a boarder around a report. I tried with the line tool but
if there is only a couple of lines of information it only
make the line as long as the information in detail
section.Also is there a way to make it a different colour
and design. Thanks Bryan
 
You can add code like the following in the On Page event of the report
Private Sub Report_Page()
Me.DrawWidth = 3
Me.DrawStyle = 3
Me.Line (0, 0)-Step(Me.Width, 13000), vbRed, B
End Sub
 
Back
Top