Eliminating so much "row" space between items in a report?

  • Thread starter Thread starter StargateFan
  • Start date Start date
S

StargateFan

I have the concatenated fields coded with Trim() and with cangrow and
canshrink set to yes. I've experimented with the placement of the
field boxes and they're touching each other top to bottom. That might
be considered overlapping but it seems to work and when I even moved
apart by one unit using Ctrl+arrow, I just got space between fields so
I have a feeling the overlap isn't creating this problem. Placement
of report on page seems okay, too.

The problem is that in the report, there is way too much space between
records. Is there any solution to this?

Thank you! :oD
 
For CanGrow and CanShrink to work, the controls cannot be touching in the
vertical direction -- there must be at least a pixel of space between them.
And also be sure to set the CanGrow and CanShrink properties of the section
in which the controls are located.
 
Ken Snell (MVP) said:
For CanGrow and CanShrink to work, the controls cannot be touching in the
vertical direction -- there must be at least a pixel of space between them.
And also be sure to set the CanGrow and CanShrink properties of the section
in which the controls are located.

Ah, it was the section that was missing the CanShrink. Once I set it to
CanShrink, too, problem fixed! <g>

Thanks!
 
Back
Top