G
Guest
I have a report where if an option box value is 1 then it prints the footer
(which is two pages long) otherwise it does not print the footer. My problem
is that when it does not print the footer, I get a blank page. This has
nothing to do with margins or page breaks (there is no problem if the footer
prints). Here is the code from the OnFormat event of the report footer.
If Forms!frmQuote!PrintContract = 2 Then
ReportFooter.Visible = False
Else
ReportFooter.Visible = True
End If
Any help would be greatly appreciated.
(which is two pages long) otherwise it does not print the footer. My problem
is that when it does not print the footer, I get a blank page. This has
nothing to do with margins or page breaks (there is no problem if the footer
prints). Here is the code from the OnFormat event of the report footer.
If Forms!frmQuote!PrintContract = 2 Then
ReportFooter.Visible = False
Else
ReportFooter.Visible = True
End If
Any help would be greatly appreciated.