vertical line between columns in report

S

Song

I draw a vertical line in the center of a 2 columns of the report
(column spacing). It does not show. If I put the line close to the
right edge of the first column, it shows. But I want the vertical line
in the center of column gap. How to do it?

Thanks.
 
D

Duane Hookom

Are you using code with the Line Method or are you using a line control?
What is the gap? Is this the Column Spacing?

If you have a multi-column report with a column spacing of 0.25" you might
try code in the On Page of

Private Sub Report_Page()
Dim intGap As Integer
intGap = 0.25 * 1440 / 2
Me.Line (Me.Width + intGap, 0)-Step(0, 14000)
End Sub
 

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