Report Design Issue

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

Guest

This is so simple it's hard. I want to have a line seperate vertically my
detail

Example Jane l 50
Bob l 70

I want the line to be contiuouse dow the middle and Access keeps adding a
space at the start of each row like show above. So far all I have tried is
drawing a line. What other options might you suggets?

Thanks,

JZ
 
This will sound obvious, but make sure your line goes all the way to the top
and all the way to the bottom of your detail section.

I just did it to experiment, and make sure I was right, and it took me
several tries to get it tightly synched into the top and bottom of the detail
section. I recommend grabbing the line and pushing it up as far as you can
and then grabbing the bottom of the detail section and pulling that up as far
as it will go. But when I did that, it worked, and produced a continuous
line.
 
JZ,

Another approach is to use the Line method to have the line drawn at the
time the report is printed. In the On Format event property of the
report's Detail section, you can put code the equivalent of this...
Me.Line (Me.YourNumberControl.Left, 0)-(Me.YourNumberControl.Left,
Me.Height)
 
Back
Top