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

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -