printing a multi-page report
Windows XP, Delphi 6, FR 2.53
I print out a five page report made up of 5 pages, which are basically 5 Report titles on 5 pages.
My problem is that I wish to print them out in user-defined order. How would I go about that programatically.
FRReport.Pages.Move(x,y) and Pages.Page[0].Position := 1 seem to have no effect.
Thanks in advance
I print out a five page report made up of 5 pages, which are basically 5 Report titles on 5 pages.
My problem is that I wish to print them out in user-defined order. How would I go about that programatically.
FRReport.Pages.Move(x,y) and Pages.Page[0].Position := 1 seem to have no effect.
Thanks in advance
Comments
frReport1.Pages.Move(0,1);
it can move the first page to second
was not working for me - when is this called so it does work.
Thanks