Frame/Border

  • Thread starter Thread starter Anthony Viscomi
  • Start date Start date
A

Anthony Viscomi

Is there any way to put a border or frame around the entire report page?

Thanks!
AnthonyViscomi
 
Anthony said:
Is there any way to put a border or frame around the entire report page?


You can use the Line method in the report's Page event to do
this.

Me.Line (0,0) - (Me.Width, 10 * 1440), , B

Where the 10 needs to replaced by your paper height less top
and bottom margins.
 
Anthony said:
Thanks Marshall it works great! How can I make it thicker?

Set the report's DrawWidth property:

Me.DrawWidth = 15

Check Help for all the other report properties that can
affect the Line, Circle and Print methods.
--
Marsh
MVP [MS Access]

 
Back
Top