Visual Basic .NET Tutorial 47 - iTextSharp : How to create PDF file in ...







Imports iTextSharp.text.pdf
Imports iTextSharp.text
Imports System.IO
Public Class Form1


Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button_CREATE_PDF.Click
Dim pdfDoc As New Document()
Dim pdfWrite As PdfWriter = PdfWriter.GetInstance(pdfDoc, New FileStream("Simple.pdf", FileMode.Create))

pdfDoc.Open()
pdfDoc.Add(New Paragraph("Hello World"))
pdfDoc.NewPage()
pdfDoc.Add(New Paragraph("Hello World Again"))
pdfDoc.Close()
End Sub
End Class






---------------------------------------------------------------------------------

Tutorials on creating PDF files using VB:NET

Create PDF Files on fly in VB:NET sample code

creating pdf file in VB:NET

create pdf file from VB:NET.net - MSDN - Microsoft‎

How to create PDF file on C# or may be you know some

creating a pdf file with Visual Basic .NET  - MSDN - Microsoft‎

Create Simple PDF File using Visual Basic .NET

How to create PDF file in Visual Basic .NET .Net  Open Source PDF Libraries in C#

Creating pdf files at runtime in Visual Basic .NET

.NET PDF Component - Create Convert PDF Files in Visual Basic .NET

Searches related to create pdf file c# create doc file c# create pdf file java create html c# c# itextsharp create pdf create pdf asp.net c# using itextsharp itextsharp tutorial c# itextsharp text to pdf

Comments