Modify Field Height on the fly

G

Guest

I'm creating a report based on a table with basically 3 fields (Order,
Features and Desc).

The Features and Desc fields have borders on the report. I've allowed the
Desc field to grow and want the Features field to grow with it (IE, want the
box around the features field to be the same height as the box around the
Desc field).

Any suggestions?

Thanks,
J
 
M

Marshall Barton

J said:
I'm creating a report based on a table with basically 3 fields (Order,
Features and Desc).

The Features and Desc fields have borders on the report. I've allowed the
Desc field to grow and want the Features field to grow with it (IE, want the
box around the features field to be the same height as the box around the
Desc field).


You can not get the border of one control to grow to the
Height of another control.

You can use the Line method to draw a rectangle around each
control using code in the section's Print event.

If the code for that is beyond your current skill level,
there is a complete solution for this problem in the
PrintLines sample fb at www.lebans.com
 
G

Guest

I got it to work using the Line method. Thanks.

Marshall Barton said:
You can not get the border of one control to grow to the
Height of another control.

You can use the Line method to draw a rectangle around each
control using code in the section's Print event.

If the code for that is beyond your current skill level,
there is a complete solution for this problem in the
PrintLines sample fb at www.lebans.com
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top