Printing
I can print to web reports without having to generate in some format like PDF, XLS, ... I want the standard window of windows open for viewing and printing in a desktop application, but I'm getting to. To trying something like this:
FastReport.Report wrpListaAluno = new FastReport.Report ();
wrpListaAluno.Load (Server.MapPath ( ". / Reports / ListaAlunoNome.frx"));
wrpListaAluno.SetParameterValue (strSQL, "strSQLRELAT);
wrpListaAluno.Prepare ();
wrpListaAluno.show () / / wrpListaAluno.ShowPrepared ()
FastReport.Report wrpListaAluno = new FastReport.Report ();
wrpListaAluno.Load (Server.MapPath ( ". / Reports / ListaAlunoNome.frx"));
wrpListaAluno.SetParameterValue (strSQL, "strSQLRELAT);
wrpListaAluno.Prepare ();
wrpListaAluno.show () / / wrpListaAluno.ShowPrepared ()
Comments
Direct printing (like in windows forms) is not allowed in the web mode. When you press the Print button, FastReport exports the report to pdf and opens it in Acrobat Reader. Then you may print a report.