How To Use TextSharp
May 22, 2011
I downloaded iTextSharp because it seems to be the most popular free one. But aftersearching the internet I am not really finding the information I need to get me started. The few tutorials I've found so far are too confusing. I know there's a book out there but I'm a student and don't want to spend the money. I just need really basic step-by-stepinformation, preferably with code in VB. The most basic tutorial I've found so far isTextSharp, but it's not working for me. I tried to follow it and came up with this code:
using System;
using System.Collections.Generic;
using System.Linq;
[code].....
View 2 Replies
Jun 22, 2012
I have a gridview which I'm converting to a PDF with iTextSharp. I've been following along with the method in this post.Since I'm using VB.net I've changed all the C# code over but I've been having problems with one line.if (gvReport.Columns[columnNo] is TemplateField)I don't know how to write this line in VB.net and as I have a few templatefields in my gridview (for formatting) they show up as blank in the PDF
View 1 Replies
Mar 17, 2010
I'm wondering how can I put a header into my PDF file, cause I've tried the tutorials from here:And it has not worked.I've done this:
Dim head As New HeaderFooter(New Phrase("This is page: "), False)
head.Border = Rectangle.NO_BORDER
document.Header = head
[code].....
View 2 Replies