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

Popular posts from this blog

symfony - TEST environment only: The database schema is not in sync with the current mapping file -

twig - Using Twigbridge in a Laravel 5.1 Package -

jdbc - Not able to establish database connection in eclipse -