Hide PageFooter
Good Evening,
I have a pagefooter where I hide it after the 1st page with a script, but as you can see in the photo it seems to be taking up space, can I do something about it?
Version 6.4
function PageHeader1OnBeforePrint(Sender)
{
if (<Page#> < 2 )
{Sender.Visible = True;}
else {Sender.Visible = False;}
}
function PageFooter1OnBeforePrint(Sender)
{
if (<Page#> < 2 )
{Sender.Visible = True; }
else {Sender.Visible = False;
}
}
Comments
G'day,
Your problem reminds me of something similar.
I vaguely remember we solved that "historical issue" by setting the Height of the Band to zero.
Worth a try?
Cheers, Paul
I have also tried sender.height=0.0001 in the else of pagefooter1 but it still didn't work.
Kind Reminder