format rows in a report

  • Thread starter Thread starter chico
  • Start date Start date
C

chico

I have "Can Grow" on to wrap fields in a report (with
borders) that are too long to display on one line. The
problem is that the other fields don't wrap, thusly they
are not as tall. The one's that did wrap are taller and
the combination looks funny. How can I get the fields
that don't need to wrap to be the same height as the one's
that do need to wrap.

Thanks!!!
 
chico said:
I have "Can Grow" on to wrap fields in a report (with
borders) that are too long to display on one line. The
problem is that the other fields don't wrap, thusly they
are not as tall. The one's that did wrap are taller and
the combination looks funny. How can I get the fields
that don't need to wrap to be the same height as the one's
that do need to wrap.


You can't use borders to do that, however you can use the
Line method to draw the lines using VBA code in the
section's Print event. Sometimes this can get kind of
tricky so you might want to use Stephen Lebans' PrintLines
procedure at www.lebans.com
 
Back
Top