Need Help - FR print multiple copies
There is a special requirements for my report where it need to be printed as 3 copies.
Each copy needs a special indicator like "ORIGINAL" , "DUPLICATE", "COPY"
I have been trying it for many days but still unable to get it done, can anyone help ?
Thank you so much.
Each copy needs a special indicator like "ORIGINAL" , "DUPLICATE", "COPY"
I have been trying it for many days but still unable to get it done, can anyone help ?
Thank you so much.
Comments
Hi, I have just tried, but it seem doesn't works
procedure mmWaterMark1OnBeforePrint(Sender: TfrxComponent);
begin
if <CopyName#> = 1 then mmWaterMark1.Text := 'ORIGINAL';
if <CopyName#> = 2 then mmWaterMark1.Text := 'DUPLICATE';
if <CopyName#> = 3 then mmWaterMark1.Text := 'COPY';
end;
- put a memo object with [CopyName#] text inside. It will show a copy name;
- go "Code" tab and write a simple script that will give names to each copy.
You can also do this in Delphi code;
It is now working, thank you so much!