views:

63

answers:

2

how do i add another page to the document and start writing to it in vb.net please

+1  A: 

The NewPage method of the iTextSharp.Text.Document class normally does this. What happens when you use that?

Aaronaught
+1  A: 

Assuming you've got something like Dim document As New Document(...) in your code, just call document.newPage().

jball