Crystal Reports: Selecting PaperSource

  • Thread starter Thread starter Tim Doege
  • Start date Start date
T

Tim Doege

Is it possible to select the paper source for a printer when printing using
the ReportDocument-class?

It is possible to set the PaperSource property in the PrintOptions-class of
ReportDocument and use one of the PaperSource Enumeration values
like "Auto" or "Cassette":
CrystalDecisions.CrystalReports.Engine.ReportDocument MyDocument ...
MyDocument.PrintOptions.PaperSource =
CrystalDecisions.Shared.PaperSource.Auto

But how can I use "Tray 2", for instance if my printer has "Tray 1", "Tray
2" and "Tray 3" (I can access my printers possible paper sources using
th Enumeration "PrintDocument.PrinterSettings.PaperSources"

Cheers,
Tim
 
I have the same problem
Is it possible to select the paper source for a printer when printing using
the ReportDocument-class?

It is possible to set the PaperSource property in the PrintOptions-class of
ReportDocument and use one of the PaperSource Enumeration values
like "Auto" or "Cassette":
CrystalDecisions.CrystalReports.Engine.ReportDocument MyDocument ...
MyDocument.PrintOptions.PaperSource =
CrystalDecisions.Shared.PaperSource.Auto

But how can I use "Tray 2", for instance if my printer has "Tray 1", "Tray
2" and "Tray 3" (I can access my printers possible paper sources using
th Enumeration "PrintDocument.PrinterSettings.PaperSources"

Cheers,
Tim

User submitted from AEWNET (http://www.aewnet.com/)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top