RE: [iText-questions] table borders only visible part of the time

2005-02-25 Thread Joseph Milora
We made some changes to the generated pdf, most notably setting the fit table to page to false. Now the following happens. On IE, it generates a page of data, skips a page, then finishes the rest of the report. On Mozilla, the formatting for the tables is still gone. Any ideas? Thanks, Joe Yes.

Re: [iText-questions] A question...

2005-02-25 Thread Paulo Soares
See the examples at http://itextpdf.sf.net. - Original Message - From: "gestion" <[EMAIL PROTECTED]> To: Sent: Friday, February 25, 2005 5:45 PM Subject: [iText-questions] A question... Hello! At first, congratulations for your library, it is simply excellent! But I have a litte p

[iText-questions] A question...

2005-02-25 Thread gestion
Hello!       At first, congratulations for your library, it is simply excellent! But I have a litte problem, I can't do a pdf document with tables and a watermark in the same page. Do you have any example about this? I have read the documentation and I have seen example by example, but I hav

RE: [iText-questions] Adding PdfFormField to PdfPTable

2005-02-25 Thread Paulo Soares
Use a PdfPCellEvent and PdfPCell.setFixedHeight(). In PdfPCellEvent get the cell's position. > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Little, Jason > Sent: Thursday, February 24, 2005 4:37 PM > To: itext-questions@lists.sourceforge.net > S

RE: [iText-questions] image from JAR-file

2005-02-25 Thread Paulo Soares
Load the image first to a byte array. > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Curry NamNam > Sent: Friday, February 25, 2005 4:11 PM > To: itext-questions@lists.sourceforge.net > Subject: [iText-questions] image from JAR-file > > I use

RE: [iText-questions] tab spacing and paragraph spacing

2005-02-25 Thread Paulo Soares
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Mike Watson > Sent: Thursday, February 24, 2005 6:26 PM > To: itext-questions@lists.sourceforge.net > Subject: [iText-questions] tab spacing and paragraph spacing > > Hi, > > I am using iText (i

RE: [iText-questions] setFirstLineIndent

2005-02-25 Thread Paulo Soares
Paragraph.setFirstLineIndent() will only work in ColumnText and PdfPTable. > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Nederhof M.J. > Sent: Friday, February 25, 2005 10:23 AM > To: itext-questions@lists.sourceforge.net > Subject: [iText-ques

[iText-questions] image from JAR-file

2005-02-25 Thread Curry NamNam
I use Image image = Image.getInstance("myImage.gif");   That works when the file is in the diirectory of my Java-application.   My applications is distributed in a single JAR-fil which includes both iText, my application, and the image-file. Is there a way of accessing the image-file from the JAR-f

[iText-questions] Bug in PdfStamper.addComments()

2005-02-25 Thread Rémi Zara
Hi, There is a bug in PdfStamper.addComments(). It does not import apparence streams for stamp annotations. In fact, it's the PdfSamperImp.findAllObjects that does not explore STREAM objects. The following patch fixes the problem for me. Regards, Rémi Zara Docubase Systems. --- PdfStamperImp.jav

[iText-questions] Adding PdfFormField to PdfPTable

2005-02-25 Thread Little, Jason
Title: Adding PdfFormField to PdfPTable Hello, I want to be able to add PdfFormField such as textboxes, checkboxes etc. to a PdfPTable on a PDF file. I am currently unable to do so. I am using iTextDotNet. Any suggestions and or can you point me to some examples?     Thanks,     J

[iText-questions] Frank Zhou/ReserveFunds is out of the office.

2005-02-25 Thread Frank_Zhou
I will be out of the office starting 02/24/2005 and will not return until 02/25/2005. I will respond to your message when I return. Please contact Gong Cai at 5815 if you need immediate assistance. --- SF email is sponsored by - The IT Pr

RE: [iText-questions] Bug in PdfStamper.addComments()

2005-02-25 Thread Paulo Soares
Thank you. > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Rémi Zara > Sent: Thursday, February 24, 2005 2:49 PM > To: itext-questions@lists.sourceforge.net > Subject: [iText-questions] Bug in PdfStamper.addComments() > > Hi, > > There is a bu

Re: [iText-questions] Print counter in PDF

2005-02-25 Thread Leonard Rosenthol
At 07:07 AM 2/24/2005, Thomas Adam wrote: OK, thank you. Does it mean there are no methods for this purpose in the iText API? Correct. Leonard --- Leonard Rosenthol

[iText-questions] Table and PdfContentByte

2005-02-25 Thread Фот Дмитрий
Hi! I have some trouble with text and table positioning. I want to place my text after some big table. This text should be placed using absolute positioning and setTextMatrix, because it has a complex structure. But the position of the text depends on the table size. And I don't know where s

[iText-questions] setFirstLineIndent

2005-02-25 Thread Nederhof M.J.
Under "The Paragraph object" the tutorial claims this method "need no further explanation". Yet the below doesn't do what one would expect. All first lines of the paragraphs have equal indentation, i.e. presumably no indentation. Bug or feature? Thanks, Mark-Jan ==

Re: [iText-questions] Table and PdfContentByte

2005-02-25 Thread Paulo Soares
You have PdfWriter.getVerticalPosition() or you can use a PdfPTable and place it at an absolute position. - Original Message - From: "Фот Дмитрий" <[EMAIL PROTECTED]> To: Sent: Friday, February 25, 2005 7:37 AM Subject: [iText-questions] Table and PdfContentByte Hi! I have some troubl