Re: [iText-questions] Cover page with Detail Page

2006-10-09 Thread Steve Murphy
Possibility 2 is closer. I'm creating the document from scratch and I have onStartPage() to put the header on each page. But, the first page is a cover page that doesn't need the header, only the detail pages need it. The workaround that I've come up with is to add 'if(writer.getPageNumber()>1){' i

Re: [iText-questions] Cover page with Detail Page

2006-10-07 Thread Bruno Lowagie
Steve Murphy wrote: > Hi, > > I need to generate a Pdf document with a dynamic cover > page (with customer data) and at least one detail page > with order detail lines. The detail pages need to have > a consistent header, which I am able to do, but the > cover page can't have this header. I'm not

[iText-questions] Cover page with Detail Page

2006-10-06 Thread Steve Murphy
Hi, I need to generate a Pdf document with a dynamic cover page (with customer data) and at least one detail page with order detail lines. The detail pages need to have a consistent header, which I am able to do, but the cover page can't have this header. I'm not sure how to do this. Any hints? T