Vertical Line help

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
 
D

Duane Hookom

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)
 
G

Guest

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)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top