Toggle navigation
ReportBuilder Support Forums
Categories
Discussions
Activity
Sign In
Home
›
General
ReportBuilder 22.06 now available including Delphi 12.2 support!
New Blog Posts: Merging Reports -
Part 1
and
Part 2
Deleting a Group at runtime
rbuser
April 2002
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
rbuser
April 2002
edited April 2002
Is the correct way to do this as follows:
ppReport.Group[0].Report:= nil;
digitalmetaphors
April 2002
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
Digital Metaphors Corporation
http://www.digital-metaphors.com
info@digital-metaphors.com
rbuser
April 2002
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.
Comments
ppReport.Group[0].Report:= nil;
ie
ppReport1.RemoveGroup(ppReport1.Groups[0]);
--
Cheers,
Alexander Kramnik
Digital Metaphors
http://www.digital-metaphors.com
info@digital-metaphors.com
to remove a group.
"Alexander Kramnik (Digital Metaphors)" wrote