StiReport report = new StiReport();
report.Load(Application.StartupPath + "\\Report\\srXiaoFeiDan.mrt");
report.Compile();
//report.Render();
PrinterSettings printerSettings = new PrinterSettings();
printerSettings.PrinterName = PrintName;
printerSettings.Copies = 2;
report.Print(false, printerSettings);
when I run it,it will show a dialog with message: Now compiling report...finish
How to disable it?
how to disable Now compiling report dialog?
how to disable Now compiling report dialog?
Hello,
Please use following code:
Thank you.
Please use following code:
Code: Select all
StiReport report = new StiReport();
report.Load(Application.StartupPath + "\\Report\\srXiaoFeiDan.mrt");
report.Compile();
report.Render(false);<----------------------------------
PrinterSettings printerSettings = new PrinterSettings();
printerSettings.PrinterName = PrintName;
printerSettings.Copies = 2;
report.Print(false, printerSettings);
how to disable Now compiling report dialog?
yeah,good,thanks more.
how to disable Now compiling report dialog?
Hi
Please let us know if any help is required.
Thank you.
Please let us know if any help is required.
Thank you.