Four or five? Maybe, but I would need more info.
If you really meant to say all the details in a group, then
use a Line control (horizontal) at the bottom of the group
header and another at the top of the group footer. Then use
the line method in the detail section's Print event to draw
the vertical lines:
Me.Line (0,0) - (0, Me.Section(0).Height)
Me.Line (Me.Width,0) - Step(0, Me.Section(0).Height)
--
Marsh
MVP [MS Access]
Yes that works but is there a way to create a box so that four or five
detail
lines can be in it and still keep the header and footer in a set
location?
Carlo wrote:
I have a report and the details can grow, what I want is to put a box
around
the details, one box only, so that the details print and display only
in the
box, I can't seem to do that is there a way.
:
Use the report's Line method in the Detail section's Print
event:
Me.Line (0,0) - Step(Me.Width, Me.Section(0).Height), , B