[iText-questions] PDFPtable vs Table

2002-09-04 Thread Ram Guttikonda
I need some help/advice on the use of PDFPtable vs Table. Considering I am interested only in PDF. I thought PDFPtable provides richer functionality than Table. That being said. This is what I would use with 'Table' for my need. table.endHeaders(); (need to repeat the headers for table automatic

RE: [iText-questions] Anchor.setReference not loading local file reference

2002-09-04 Thread Dang Nguyen
Title: RE: [iText-questions] Anchor.setReference not loading local file reference Yes, it does.  Thanks for the help.  I will look for further help from Adobe. Thanks, Dang Nguyen -Original Message- From: Paulo Soares [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 04, 2002

RE: [iText-questions] Anchor.setReference not loading local file reference

2002-09-04 Thread Paulo Soares
When you put the cursor over the text in Acrobat does it show correctly the link? If it does you have to find the solution in Acrobat. Best Regards, Paulo Soares > -Original Message- > From: Dang Nguyen [SMTP:[EMAIL PROTECTED]] > Sent: Wednesday, September 04, 2002 19:33 > To: '[EMAIL

RE: [iText-questions] Anchor.setReference not loading local file reference

2002-09-04 Thread Dang Nguyen
Title: RE: [iText-questions] Anchor.setReference not loading local file reference Nope, still does not open the document.  All I get is the "My Computer" window.     // add a link to the FRD     paragraph = new Paragraph("FRD:");     paragraph.add(Chunk.NEWLINE);    

RE: [iText-questions] Anchor.setReference not loading local file reference

2002-09-04 Thread Paulo Soares
This code works for me: Chunk ck = new Chunk(text, font); ck.setAnchor("file:///c:/consis_dump.txt"); document.add(new Paragraph(ck)); with both Acrobat and Reader 5.05. Best Regards, Paulo Soares > -Original Message- > From: Dang Nguyen [SMTP:[EMAIL

[iText-questions] Anchor.setReference not loading local file reference

2002-09-04 Thread Dang Nguyen
Title: Anchor.setReference not loading local file reference In my iText-generated PDF document, I am attempting to create an Anchor which links to a file on the local network, which is accessible to all of our intranet users.  The URL is in the form "file:///S:/path/to/the/file.doc" but it doe

[iText-questions] Split Table in page

2002-09-04 Thread Skondras P.
Hi i have one question i have a table that i want to fit in one page else delete the last row of the table and continue in the second page i have the following code if (!writer.fitsPage(t)) { t.deleteLastRow(); i--; d.add(t);

[iText-questions] RE: How to align the table to the left of the final page?

2002-09-04 Thread Paulo Soares
Use Table.setAlignment() or PdfPTable.setHorizontalAlignment(). Best Regards, Paulo Soares > -Original Message- > From: lily hu [SMTP:[EMAIL PROTECTED]] > Sent: Tuesday, September 03, 2002 22:29 > To: [EMAIL PROTECTED] > Subject: How to align the table to the left of the final pag