added inline printing from browser in WebReport
Hello,
anybody used "+added inline printing from browser in WebReport"?
i use next code on ASP
Showing a modal dialog box or form when the application is not running in UserInteractive mode is not a valid operation. Specify the ServiceNotification or DefaultDesktopOnly style to display a notification from a service application.
Environment: WinXp + IIS + FR1.5.2
anybody used "+added inline printing from browser in WebReport"?
i use next code on ASP
using (Report report = new Report())
        {
            report.Load(path);
            report.SetParameterValue("gBatchID", ddNumList.Text);
            FastReport.ReportPage page = new ReportPage();
            report.Prepare();
            PrinterSettings printerSettings = null;           Â
            if (report.ShowPrintDialog(out printerSettings))
            {
                  report.PrintPrepared();
              }
        }
But i have next response:Showing a modal dialog box or form when the application is not running in UserInteractive mode is not a valid operation. Specify the ServiceNotification or DefaultDesktopOnly style to display a notification from a service application.
Environment: WinXp + IIS + FR1.5.2