Need all boarders to be the same length as the longest field that can grow.

H

himmelrich

I have a row which reports a record, the one field has a tendancy to
grow, which moves the length longer. Each field has the boarder
enabled, however the boarder for the shorting fields doesn't match the
boarder of the longer field. I want all boarders to match the longest
field so that it makes a "grid". Can anyone help?
 
M

Marshall Barton

I have a row which reports a record, the one field has a tendancy to
grow, which moves the length longer. Each field has the boarder
enabled, however the boarder for the shorting fields doesn't match the
boarder of the longer field. I want all boarders to match the longest
field so that it makes a "grid".

The border of each control matches that control's Height,
they are not tied to the section's Height (nor should they).

You should scrap the borders and use the Line method in the
section's Print event procedure. This might get a little
tricky when a section is split across a page boundary so I
recommend using the PrintLines stuff at www.lebans.com
 
H

himmelrich

Thank you for the pointer...the examples are great at that website.
Challenge resolved.
 
Top