This is a migrated thread and some comments may be shown as answers.

Reportprint with more then one tray

8 Answers 189 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
Konstantin Spielmann
Top achievements
Rank 1
Konstantin Spielmann asked on 21 May 2010, 09:39 AM
Hello team,

i try to print a Reporbook from 3 trays under C# in one printjob. Such as
  • page 1 <- tray 2
  • page 2 <- tray 3
  • page 3 <- tray 4
Is it possible?

I can print them all from custom trays in different jobs without problems, but i need them all in one printjob because the printer have a stitcher to bound the document. How can i assign the printjob with more then one printerSettings?

My way now:
var reportProcessor = new ReportProcessor(); 
 
var printerSettings = new PrinterSettings { PrinterName = printer }; 
 
Report1 report1 = new Report1(); 
FillReport1(); 
 
Report2 report2 = new Report2(); 
FillReport2(); 
 
Report3 report3 = new Report3(); 
FillReport3(); 
 
ReportBook reportBook = new ReportBook(); 
 
reportBook.Reports.Add(report1); 
reportBook.Reports.Add(report2); 
reportBook.Reports.Add(report3); 
 
reportProcessor.PrintReport(reportBook, printerSettings); 
 

To print the reportbook from custom tray i can
printerSettings.DefaultPageSettings.PaperSource = printerSettings.PaperSources[7]; 
How can i get it from differen trays?

Hope someone can help me.


8 Answers, 1 is accepted

Sort by
0
Accepted
Steve
Telerik team
answered on 25 May 2010, 01:15 PM
Hi Konstantin,

The current version of Telerik Reporting works only with a single tray and you're the first one to request such functionality. We would log this in our features list and would consider researching on this matter if there is enough interest.

Please excuse us for the temporary inconvenience.

Sincerely yours,
Steve
the Telerik team

Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
0
Vincent Willems
Top achievements
Rank 2
answered on 16 Jan 2011, 09:02 AM
Hello,

This would be nice to have. We also are into an application where the first page needs to be printed on letterhead and all the rest on plain paper.

Thanks,

Vincent
0
KawaUser
Top achievements
Rank 2
answered on 23 Feb 2011, 08:07 PM
Has this idea been implemented in to Telerik reporting? We also need to do something similar.
0
Konstantin Spielmann
Top achievements
Rank 1
answered on 24 Feb 2011, 08:30 AM
Hello,

I solved this problem at that time with Telerik Reporting + (can i post it here?) Gnostice PDFOne .NET ProPlus Edition lib.

One feature of this PDF library is:
  • ChangePaperSource event for changing printer trays for different pages in the same print job (ProPlus Edition only)

Best regards,
Konstantin
0
Matthias
Top achievements
Rank 1
answered on 04 Mar 2013, 08:41 AM
Also required...
0
Bob
Top achievements
Rank 1
answered on 14 Jul 2014, 08:25 PM
Is this implemented yet? It's been a few years and you said you would incorporate this feature into your future versions. I need to print to a specific tray and usually use papersource tray. Can a Telerik report be instructed to print to a specific printer / specific tray?
Thanks,
Bob Nunley
0
Bob
Top achievements
Rank 1
answered on 14 Jul 2014, 10:00 PM
Sorry, didn't read the forum all the way. Only needed Konstantin's post. Not trying to print different pages to different printers.

Thanks,

Bobn :>)

printerSettings.DefaultPageSettings.PrinterSettings.PrinterName = @"\\TTCFile\TCPL";
printerSettings.DefaultPageSettings.PaperSource = printerSettings.PaperSources[4];
printerSettings.DefaultPageSettings.PaperSize = printerSettings.PaperSizes[1];
0
RPI Bumper to Bumper Auto Parts
Top achievements
Rank 2
answered on 05 Oct 2016, 12:50 PM
This would be a great feature to add into the Telerik Reporting module, currently we would have to purchase another third party library to incorporate in current project
Tags
General Discussions
Asked by
Konstantin Spielmann
Top achievements
Rank 1
Answers by
Steve
Telerik team
Vincent Willems
Top achievements
Rank 2
KawaUser
Top achievements
Rank 2
Konstantin Spielmann
Top achievements
Rank 1
Matthias
Top achievements
Rank 1
Bob
Top achievements
Rank 1
RPI Bumper to Bumper Auto Parts
Top achievements
Rank 2
Share this question
or