View Full Version : border on report


aerofuego
05-14-2007, 01:14 PM
is it possible to have a border around the whole report?

thanks

MStCyr
05-15-2007, 10:43 AM
It certainly is possible to put a border around the report using the following code...

Private Sub Report_Page()
' Draw a page border around this report.
Me.Line (0, 0)-(Me.ScaleWidth, Me.ScaleHeight), , B
End Sub

Best regards

Maurice

aerofuego
05-15-2007, 11:08 AM
MStCyr,

It works.

Thanks.