or
Dim rp as new ReportProcessor, r as InvoiceReport, ms as MemoryStream
for each itm in list( of items)
r=New InvoiceReport
rp.RenderReport("PDF", r, Nothing)
'database save code
Select itm.SendFormat
Case email,fax
'do email/fax processing with memory stresm
Case paper
rp.PrintReport(r,settings)
End Select
r.dispose
ms.dispose
Me
.imgLogo.Value = ConfigurationManager.AppSettings("TrustLogo")
But this currently doesn't work from the reporting class.
Andy
Hello,
Is there a way to use Telerik Reporting to convert HTML to PDF and/or RTF? We're using other Telerik tools - like the Editor in asp mvc - which produce nice HTML, but now we need to output that content to a printable format. abcPDF comes to mind, but we'd prefer to use our existing Telerik tools.
Thanks!
Chris