The problem is : the report control don't save all the print options (color, ...)
For exemple i want to print 2 black and white reports:
Code: Select all
StiOptions.Print.StorePrinterSettingsInReportAfterPrintDialog = true;
report.Print(true);
report.Print(false);
I try to use the dot.net base print dialog (System.Windows.Forms.PrintDialog) :
Code: Select all
PrintDialog prntDiag = new PrintDialog();
prntDiag.ShowDialog();
report.Print(false,prntDiag.PrinterSettings);
Is there any tips to save ALL the print settings for other reports printings ?