Home General
New Blog Posts: Merging Reports - Part 1 and Part 2

Pass Setting

edited November 2001 in General
I have a report that 95% of the time will not require a second page and
therefore won't require a second pass, saving the user a lot of time. How
do you change the pass setting programmatically? What is type
'TppPassSettingType' ?

Thanks in advance,

Ron Hagan

Comments

  • edited November 2001

    TppPassSettingType is defined in ppTypes.pas. You can use it as follows:

    uses
    ppTypes;

    Report.PassSetting := psOnePass;

    OR

    Report.PassSetting := psTwoPass;



    Best regards,

    Nard Moseley
    Digital Metaphors
    www.digital-metaphors.com
This discussion has been closed.