vertical line

  • Thread starter Thread starter Randy
  • Start date Start date
R

Randy

I have difficulty to make a vertical line (columnar line).
If the page is full, I have the vertical from the top
until the page footer. But if the record is not full page,
the line discontinued.
Would you help me please?
Thank you.
Randy.
 
What I do is to place an invisible rectangle in the report header section
and name it "recLocation". I can then use the following code to draw a
vertical line from the top, left corner of the rectangle through the bottom
of the page. To move the line left or right, I just move the control.

Private Sub Report_Page()
Me.Line (Me.recLocation.Left, Me.recLocation.Top)-Step(0, 20000)
End Sub
 
Thanks for all of you.
I am using Duane Hookom's code to solve the problem.
Again, thanks a lot.
God Bless You.
Randy.
 
Back
Top