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

Change SubReport PrintBehaviour settings

edited June 2003 in General
how can i change the PrintBehaviour settings in code
ASubReport.PrintBehavior := [pbSection];

i tried this but end up with syntax error

Comments

  • edited June 2003
    Hi nagen,

    property 'PrintBehavior' isn't a set.
    ASubReport.PrintBehavior := pbSection;

    HTH,
    Chris Ueberall;
  • edited June 2003
    i tried that also but i'm getting undeclared identifier error during
    compilation

  • edited June 2003
    Hi nagen,

    you have to add 'ppTypes' to your uses clause.

    regards,
    Chris Ueberall;
  • edited June 2003
    thankx..it's working
This discussion has been closed.