I suggest to implement the following feature:
Based on the cool new LL26 feature Combine multiple projects in a single print job it would be awesome to have the ability to print every project for master mode record A, than every project for master moder record B …
A typical use case might be:
a) I have a customer that prints invoices with terms and conditions that do not fit on a single page. Thats why I can’t use the backside feature.
With
LL.DataSource = GetMyDataSource();
LL.AutoProjectFile = @"invoice.lst;toc.lst";
LL.Print();
this would be easy to achive.
b) The new feature has an important advantage over manually merging two preview files: The totalpages are shared between the combined reports.
This would not make any sense in master mode where I currently have
- invoice 1 page 1
- invoice 1 page 2
- invoice 2 page 1
- invoice 2 page 2
- invoice 2 page 3
transferred to this new feature this would propably result in
- invoice 1 page 1
- invoice 1 page 2
- invoice 2 page 1
- invoice 2 page 2
- invoice 2 page 3
- toc 1 page 4
- toc 1 page 5
- toc 2 page 1
- toc 2 page 2
which would look odd. Basically if this feature will support master mode I can only imagine use cases where I would like to have the reports merged based on the master records.
- invoice 1 page 1
- invoice 1 page 2
- toc 1 page 3
- toc 1 page 4
- invoice 2 page 1
- invoice 2 page 2
- invoice 2 page 3
- toc 2 page 4
- toc 2 page 5