Can DefaultPageSettings.PaperSource contain 3 seperate values?

T

trint

When PrinterSettings.Copies fires, I need to somehow get it to select
three separate papersources...one for each of 3
defaultpagesettings.copies.

PrinterSettings printerSettings = new PrinterSettings();
printerSettings.MaximumPage = m_numberOfPages;
printerSettings.MinimumPage = 1;
printerSettings.PrintRange = PrintRange.SomePages;
printerSettings.FromPage = 1;
printerSettings.ToPage = m_numberOfPages;
printerSettings.Copies = 3;
printerSettings.PrinterName = printerName;

PrintDocument pd = new PrintDocument();
m_currentPrintingPage = 1;
m_lastPrintingPage = m_numberOfPages;
pd.PrinterSettings = printerSettings;
pd.DefaultPageSettings.PaperSource =
pd.PrinterSettings.PaperSources[comboBox1.SelectedIndex =
Class1.counter]; <<I would love it if I could somehow have 3 separate
values here before it hits the next command:
pd.Print(); "Which is PrintDocument.Print".

I just mainly want to print three copies of same document without
rendering document more than once.
Thanks,
Trint
 
T

trint

Or, is it possible to send 3 separate documents to the printer at the
same time?
like:

Thanks,
Trint
 

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

Top