reportreport

  • Thread starter Thread starter pete
  • Start date Start date
P

pete

I wish to print a text box as the page header on every
page after page 2 how do i do this please


i know that this works
[TextBox].Visible = Me.[Page]>2

however, i also would like to not have the embedded space
of the non visible label/textbox there as this adds
valuable space. i would ideally liek to not only make
the labels visible/invisible but also the heights down to
zero, ie not have the total height of the invisible
labels become part of the overall page. as this pushes
desired outputs further down the page even further down
 
I don't know if this would work, I have never tried, but
in the Event Properties on the Page Header (the On Print
section) can you set the heights of the txt controls
 
I haven't had any luck attempting to change the height of either the Page
Header or Page Footer sections. You can fake a page header with a Group
Header based on a Sorting and Grouping expression of:
=1
Display the =1 Group Header and set its Repeat Section property to Yes and
Can Shrink to Yes.

You can then use this section as a page header which should be able to
shrink. You can then try to shrink your controls.

--
Duane Hookom
MS Access MVP


ACG said:
I don't know if this would work, I have never tried, but
in the Event Properties on the Page Header (the On Print
section) can you set the heights of the txt controls
where the page said:
-----Original Message-----
I wish to print a text box as the page header on every
page after page 2 how do i do this please


i know that this works
[TextBox].Visible = Me.[Page]>2

however, i also would like to not have the embedded space
of the non visible label/textbox there as this adds
valuable space. i would ideally liek to not only make
the labels visible/invisible but also the heights down to
zero, ie not have the total height of the invisible
labels become part of the overall page. as this pushes
desired outputs further down the page even further down
.
 
Back
Top