Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

We have a grid which shows invoices. Users should be able to select all or a subset of invoices and print. We are stuck at the part of printing. We are using Telerik Reporting to generate the PDF for us. Below is a section of the code which does the work

        ReportProcessor rp = new ReportProcessor();
        RenderingResult result = rp.RenderReport("PDF", book, null);
        Response.Clear();
        Response.ContentType = result.MimeType;
        Response.BinaryWrite(result.DocumentBytes);
        Response.End();
        return new FileStreamResult(Response.OutputStream, "application/pdf");

Now instead of openning these invoices in a separate window we would like the invoices to be printed automatically (the user might get the print dialog where they can change settings). At the moment it opens in another window and the user has to manually go and print which is what we dont want.

Does anybody know how to achieve automatic printing of these invoices. Please note this is an MVC based project and is internet based.

share|improve this question

1 Answer

PDFRasterizer.NET is a commercial component that allows you to print unattendend (vector graphics are preserved). Basically, the component allows you to draw PDF pages to a System.Drawing.Graphics object. By handling the PrintPage event of the PrintDocument class and drawing to the Graphics object that is passed as en event argument, you can print a PDF document. The evaluation download includes a print code sample.

http://www.tallcomponents.com/pdfrasterizer3.aspx

Disclosure: I work at TallComponets, vendor of this component.

share|improve this answer
This will be yet again another product I will need to buy which I dont want to. We at the moment can generate PDFs, I just need to workout how to print it without openning it in another tab. – Amitesh Oct 11 '11 at 22:11
I understand. Note that printing unattended using Adobe Reader is prohibited by the EULA. You may want to try to convert to PS (Ghostscript) and then LPR this to the printer (if PS enabled). – Frank Rem Oct 13 '11 at 9:26

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.