Re: [iText-questions] Is there a way to not page break automaticly when adding a chapter?

2002-08-03 Thread Paulo Soares
It's a bug. Some chapter processing is done before issuing the new page and that causes problems if the page has changed dimensions. Maybe Bruno can have a look at it, it's more in his department. Best Regards, Paulo Soares - Original Message - From: "Chris Ward" <[EMAIL PROTECTED]> To:

Re: [iText-questions] Bookmarks problem with Acrobat 5.0

2002-08-03 Thread Paulo Soares
Works for me, generated with 0.93b, tested with Acrobat 5.05. Please send me your generated pdf. Best Regards, Paulo Soares - Original Message - From: "Utilisateur1" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, August 03, 2002 16:06 Subject: [iText-questions] Bookmarks pro

[iText-questions] Bookmarks problem with Acrobat 5.0

2002-08-03 Thread Utilisateur1
I have a problem with the bookmarks with Acrobat 5.0 (windows). When i choose some bookmarks, i see the next page.   With Acrobat 4.0, no problem.                                                             Alain.     Example : chapitre 1 and 2 = KO,  chapitre 3 = OK     import com.lowag

[iText-questions] Is there a way to not page break automaticly when adding a chapter?

2002-08-03 Thread Chris Ward
When I add a chapter, itext always inserts a page break. That would be fine, because I do want one, but I need to set the page size (rotate or not) before a page break happens. Is there a way to not page break unless i tell it to? Example of what i am doing: document.setPageSize(PageSize.A4);

Re: [iText-questions] Full Justification in PTables

2002-08-03 Thread Paulo Soares
Yes it works. If you think it doesn't send me a small runnable code with the problem. Best Regards, Paulo Soares - Original Message - From: "Matt" <[EMAIL PROTECTED]> To: "iText" <[EMAIL PROTECTED]> Sent: Friday, August 02, 2002 21:14 Subject: [iText-questions] Full Justification in PTab

Re: [iText-questions] Page Break within a Chapter Section

2002-08-03 Thread Paulo Soares
I didn't remember that. It should work. Best Regards, Paulo Soares - Original Message - From: "Shrikant Shetty" <[EMAIL PROTECTED]> To: "'Paulo Soares'" <[EMAIL PROTECTED]>; "'Heiko Volland'" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Friday, August 02, 2002 18:47 Subject: RE: [iText

Re: [iText-questions] setCellspacing

2002-08-03 Thread Paulo Soares
Have you ever thought at looking at the javadocs? Use setPadding instead. Best Regards, Paulo Soares - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, August 03, 2002 5:33 Subject: [iText-questions] setCellspacing > > Hi, > > When I compile my cl

Re: [iText-questions] Cell and Table Widths

2002-08-03 Thread Paulo Soares
HTML only knows the size of the cell after having all the information. You'll have to keep all the text rows, get the text width with BaseFont.getWidthPoint() and the adjust the cells size. Best Regards, Paulo Soares - Original Message - From: "Scott Edward Skinner" <[EMAIL PROTECTED]> T

[iText-questions] setCellspacing

2002-08-03 Thread SandeeSuzeth . Co
Hi, When I compile my class using jdk1.3, I get a message saying that the class uses or overrides a deprecated API, which disappears when I remove the call to table.setCellspacing(space). Has setCellspacing been replaced? What should I use instead? Thanks! --