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
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