Print Dialog Collate problem

F

Francisco Araujo

I don't know if this is a bug or if i'm doing something wrong, but
when the print dialog is shown on VB.NET and the user select
multiple-copies and check the collate option and click ok, the collate
property value on object is not changing.

This is my code:

PrintDlg.Document = PrintDoc
PrintDlg.ShowDialog()
Debug.WriteLine("PrintDlg.PrinterSettings.Collate:" +
PrintDlg.PrinterSettings.Collate.ToString)
Debug.WriteLine("PrintDoc.PrinterSettings.Collate:" +
PrintDoc.PrinterSettings.Collate.ToString)

On debug window i only see false for both of this values, so what's
wrong with this?

Thanks in advance,
Francisco Araujo
 

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