Click here to Skip to main content
15,886,519 members
Articles / Programming Languages / Visual Basic

Generate a PDF document from exported stream of a crystal report

Rate me:
Please Sign up or sign in to vote.
0.00/5 (No votes)
10 May 2010CPOL 8.8K   3  
The last part can be written much easier in VB:Private Sub msGPDF_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles msGPDF.Click Dim Stream As IO.Stream = objRpt.ExportToStream(ExportFormatType.PortableDocFormat) Dim Buffer(CInt(Stream.Length)) As Byte ...

Views

Daily Counts

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Chief Technology Officer buildIT IT-Solutions BV
Curaçao Curaçao
Theo worked as a VB architect and software engineer since 1994, started with VB3, en is working with VB ever since to build mission critical enterprise applications for a wide range of customers.

Comments and Discussions