Click here to Skip to main content
15,886,741 members
Articles / Programming Languages / Visual Basic
Alternative
Tip/Trick

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 ...
The last part can be written much easier in VB:

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
    Stream.Read(Buffer, 0, CInt(Stream.Length))
    My.Computer.FileSystem.WriteAllBytes("Report.pdf", Buffer, False)
    System.Diagnostics.Process.Start(fs.Name)
End Sub

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

 
-- There are no messages in this forum --