I am using Visual Basic.NET 2002 and cannot get "collate" from the
PrintDialog1 or e.PageSettings. PrinterSettings .Collate to return anything
but "False." What am I doing wrong?
I am using
PrintDialog1.Do cument = PrintDocument1
'PrintDialog1.P rinterSettings. Copies = 4 'I have tried these two lines
too
'PrintDialog1.P rinterSettings. Collate = True 'I get the 4 but not the
True
If PrintDialog1.Sh owDialog() = DialogResult.OK Then
Messagebox.Show (PrintDocument1 .PrinterSetting s.Collate .ToString)
PrintPreview1.D ocument = PrintDocument1
'PrintPreview1. Document = PrintDialog1.Do cument 'I have tried this too
PrintPreview1.S howDialog()
End If
TIA, Bobbo
PrintDialog1 or e.PageSettings. PrinterSettings .Collate to return anything
but "False." What am I doing wrong?
I am using
PrintDialog1.Do cument = PrintDocument1
'PrintDialog1.P rinterSettings. Copies = 4 'I have tried these two lines
too
'PrintDialog1.P rinterSettings. Collate = True 'I get the 4 but not the
True
If PrintDialog1.Sh owDialog() = DialogResult.OK Then
Messagebox.Show (PrintDocument1 .PrinterSetting s.Collate .ToString)
PrintPreview1.D ocument = PrintDocument1
'PrintPreview1. Document = PrintDialog1.Do cument 'I have tried this too
PrintPreview1.S howDialog()
End If
TIA, Bobbo
Comment