How to print Fastreport directly without showing any Dialog in my Application? -
fsreport.registerdata(ds); (int = 0; < ds.tables.count; i++) { if (fsreport.getdatasource(ds.tables[i].tablename) != null) { fsreport.getdatasource(ds.tables[i].tablename).enabled = true; } } fsreport.printsettings.printer = printernameforprintatumatice; fsreport.printsettings.showdialog = false; if (fsreport.prepare()) { fsreport.print(); }
this code show access data dialog, how solve this? not show dialog? access data dialog in system show. please help
try this:
fastreport.utils.config.reportsettings.showprogress = false;
Comments
Post a Comment