Salat
Well-known member
Ive some problem with setting more number of copies then one. After the PrintDialog is shown (number of copies is set for example 3) and closed the PrinterSettings.Copies return 1. Ive read the msdn and found out that not all printers accepts more then one copies, but Ive two diffrent printers and the Printersettings.MaximumCopies return 9999. So the printers arent wrong.
Im useing such a code:
What is wrong then...?
please help...
Im useing such a code:
Code:
PrintDialog1.PrinterSettings.FromPage = 1
PrintDialog1.PrinterSettings.ToPage = 5
r = PrintDialog1.ShowDialog(Me)
Dim j As Integer = PrintDialog1.PrinterSettings.MaximumCopies
Dim i As Integer = PrintDialog1.PrinterSettings.Copies
please help...