Specifying paper source in code
I have hit a brick wall trying to send my report to a predetermined printer bin (ie not getting the user to select it)
AFAICS I should just be able to specify the bin in the reports printpage event ie
procedure TForm1.RepPrintPage(Page: TfrxReportPage; CopyNo: Integer);
begin
Page.Bin := 7;
Page.BinOtherPages := 7;
end;
But no matter what value I enter the paper is taken from the default source
I am using FR5 with XE6
Has anyone successfully been able to send a report to a specific bin?
Thanks
Comments