Vertical Line help

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I need to print a vertical line in a report. I need the line to go the
entire length of the detail section even if there is only just a few lines of
data.

Thanks
Mark
 
You might want to use the Line method in the On Page event of the report.
For instance:
Dim intLeft as Integer
Dim intLength as integer
intLeft = 2880 ' 2 inches
intLength = 14400 ' 10 inches
Me.Line (intLeft, 0 ) - Step(0, itnLength)
 
Thanks Duane, it worked great.

Mark

Duane Hookom said:
You might want to use the Line method in the On Page event of the report.
For instance:
Dim intLeft as Integer
Dim intLength as integer
intLeft = 2880 ' 2 inches
intLength = 14400 ' 10 inches
Me.Line (intLeft, 0 ) - Step(0, itnLength)
 
Back
Top