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

Deleting a Group at runtime

edited April 2002 in General
Is it possible to delete a group at runtime? If so could you please provide
a small sample.

Thanks,

Scott Rowat.

Comments

  • edited April 2002
    Is the correct way to do this as follows:

    ppReport.Group[0].Report:= nil;

  • edited April 2002
    Yes, that will work by disabling the group. The group can also be removed.
    ie

    ppReport1.RemoveGroup(ppReport1.Groups[0]);

    --
    Cheers,

    Alexander Kramnik
    Digital Metaphors

  • edited April 2002
    The help file indicates not using ppReport1.RemoveGroup(ppReport1.Groups[0])
    to remove a group.

    "Alexander Kramnik (Digital Metaphors)" wrote
This discussion has been closed.