Hello
I try to print my crystal report with some print options.
This is what i get:
The dialog is displayed...
And i like to print the report:
But that doesnt work... , it just print the document to the normal printer, also if i tell him to print it to another...
Normally without the printdialog it works perfect!
But i like to set the print conditions...
I try to print my crystal report with some print options.
This is what i get:
Code:
CrystalReport1 print = new CrystalReport1();
printDialog1.PrinterSettings.Copies = 2;
printDialog1.ShowDialog();
The dialog is displayed...
And i like to print the report:
Code:
print.PrintToPrinter(1, Convert.ToBoolean(1), 0, 1);
But that doesnt work... , it just print the document to the normal printer, also if i tell him to print it to another...
Normally without the printdialog it works perfect!
But i like to set the print conditions...