printing copies

Salat

Well-known member
Joined
Mar 5, 2002
Messages
81
Location
Poland, Silesia
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:
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
What is wrong then...?

please help...
 
Hi, I have just encountered the same problem, have you found an answer since posting this query?

Regards
Bob
 

Similar threads

M
Replies
0
Views
95
Martin R Pettersson
M
C
Replies
0
Views
108
CompuTechSide
C
A
Replies
0
Views
115
Apostolos Doudakmanis
A
Back
Top