I would suggest placing the images inside a page layer and simply toggle their visibility based on which page you are printing (perhaps using the OnStartPage event.
If you would like to keep things even cleaner, use two page layers and toggle their visibility.
Comments
I would suggest placing the images inside a page layer and simply toggle
their visibility based on which page you are printing (perhaps using the
OnStartPage event.
If you would like to keep things even cleaner, use two page layers and
toggle their visibility.
procedure TForm1.ppReport1StartPage(Sender: TObject);
begin
ppImage1.Visible := (ppReport1.AbsolutePageNo = 1);
ppImage2.Visible := (ppReport1.AbsolutePageNo = 2);
end;
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com