Help with dual page reports

  • Thread starter Thread starter Radar
  • Start date Start date
R

Radar

I a report that prints out two invoices one for the picker and ther
other for the customer the only difference is one has the picking
location for the picker. and the customer dont.
I have place a background imgOvernight in the page header. This is
only visible if the ship field says Overnight.
this works great.

How do I limit this image to apply only to the Picker sheet. and not
the customer sheet.

Thanks
Radar
 
Radar,
Since Picker is on the first page, use the page footer OnFormat event to
make imgOvernight invisible after the first page footer.
Private Sub PageFooter_Format(Cancel As Integer, FormatCount As Integer)
imgOvernight.Visible = False
End Sub
 
Back
Top