Draw Thick Border in Report

rajeevwgs

New member
Local time
Yesterday, 16:52
Joined
Jun 14, 2012
Messages
9
Private Sub Report_Page()
Me.Line (0, 0)-(0, 14000)
Me.Line (600, 3500)-Step(0, 8600)
Me.Line (2170, 3500)-Step(0, 8600)
Me.Line (3285, 3500)-Step(0, 8600)
Me.Line (7435, 3500)-Step(0, 8600)
Me.Line (8400, 3500)-Step(0, 8600)
Me.Line (9360, 3500)-Step(0, 8600)
Me.Line (Me.Width, 0)-(Me.Width, 14000)
End Sub

This is the code i am using in my report. I want thick border on my report. i put me.borderwidth=15 but it is affecting all the lines. please help me..:mad:
 
I don't understand what you're trying to do with the border.
 
I don't understand what you're trying to do with the border.

This is for my company purpose. I am trying to make a similar format in Access what i am doing now in MS Excel. In Excel format it is thick border i want the same in my access report also that's why i ask for help....?? Otherwise may be the company will not accept.:o
 
Try…

Me.DrawWidth = 15

Chris.
 

Users who are viewing this thread

Back
Top Bottom