how to make that the subform can grow without running over the textboxes at the bottom of the mainfo

C

Chipcom

Hi

I have mainform that contains textboxes then subform datasheet beneath
and after that there is a textboxes again.
The problem is when the mainform grows it runs over the textboxes that
at the button of the main form.
I need to know how to make that the subform can grow without running
over the textboxes at the bottom of the mainform.

Thanks
 
L

Larry Daugherty

Set the Can Grow attribute for the detail section, assuming that's
where the various controls are located.

HTH
 
P

Pieter Wijnen

move the buttons to the form footer section (view/ form header & footer)

HtH

Pieter
 
R

Rick Brandt

Chipcom said:
Hi

I have mainform that contains textboxes then subform datasheet beneath
and after that there is a textboxes again.
The problem is when the mainform grows it runs over the textboxes that
at the button of the main form.
I need to know how to make that the subform can grow without running
over the textboxes at the bottom of the mainform.

Thanks

Any control that grows should not cover other controls unless the tops of those
controls are higher on the page than the bottom of the growing control (before
it grows). Make sure you have no overlap and those controls should then get
"pushed" down the page when your subreport grows rather than being run over.
 
Top