Problem loading a BackPicture to Report
Hey there.
I am using FastReport 4 Embarcadero Edition and Delphi XE3. I wish to, through code, set a backpicture to a report whenever I print 2 pages of it, marking the 2nd page as a "establishment print".
Anyway, however I try, it seems not to work. I have tried with a lot of examples found online and none of them worked.
Could anyone tell me how is the standard (and functional) way to set through code, the backpicture?
Thanks.
I am using FastReport 4 Embarcadero Edition and Delphi XE3. I wish to, through code, set a backpicture to a report whenever I print 2 pages of it, marking the 2nd page as a "establishment print".
Anyway, however I try, it seems not to work. I have tried with a lot of examples found online and none of them worked.
Could anyone tell me how is the standard (and functional) way to set through code, the backpicture?
Thanks.
Comments
Page := TfrxReportPage(frxReport.Pages[1]); //Watermark
Page.BackPicture.LoadFromFile(C_PATH);
Page.BackPictureVisible := True;
Page.BackPicturePrintable := True;
(where C_PATH is the path to the image I wish to use as a watermark).
Now the trouble is only in using it in the right position.
No, you cant do that at the moment. There isnt any converter of crystal to Fastreports yet.