Printing same record multiple times
Is it possible to make ReportBuilder print the same record 2 or more times?
I have a report that prints labels based on a SQL query. I want to give the
user the option to print more than 1 copy of the same label. For example,
the user might want to print 2 labels for each record.
I could probably force the issue by copying the SQL results to a table and
duplicating them there, but that would be a lot of overhead for this.
Thanks,
Danny Humphress
I have a report that prints labels based on a SQL query. I want to give the
user the option to print more than 1 copy of the same label. For example,
the user might want to print 2 labels for each record.
I could probably force the issue by copying the SQL results to a table and
duplicating them there, but that would be a lot of overhead for this.
Thanks,
Danny Humphress
This discussion has been closed.
Comments
You can use the ppDetailBand.BandsPerRecords property to print the same
record more than once.
--
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com
By golly that worked! :-)
Thanks!
Danny