Page Border for Reports

  • Thread starter Thread starter halinaoz
  • Start date Start date
H

halinaoz

Can anyone please tell me if it is possible to include a
page border (as in Word) in an Access Report. If it is
possible please advise how it is done.
 
If you just want a line around the page, you can use code in the On Page
event of the report. The code would look something like:
'assuming a 10" high rectangle
Me.Line (0,0)-Step(Me.Width, 14400), , B

If you want something different, let us know.
 
Hi Duane

Thank you for your response. You are right - I should
have been more specific in my question. I actually was
hoping to put in a graphic border not just lines.

Any help you could provide would be very much appreciated.

Thanks again

halinaoz
 
Reports have a "Picture" property that you could use. There are other
possible solutions if that doesn't work.
 
Back
Top