Re: [iText-questions] Enable Conditional Textfield when filling out form

2010-01-11 Thread Dinand Veldman
Please forgive me, I can't figure out how to: 1. Access the getField("").display property - or - 2. Execute the function ParticulierOfOndernemer Any help would be appreciatet Mark Storer-2 wrote: > > Ah. Here's the script for that radio button: > ParticulierOfOndernemer(); > > > And in one

Re: [iText-questions] Enable Conditional Textfield when filling out form

2010-01-11 Thread Dinand Veldman
FYI, I'm using the iTextSharp library from VB.net Dinand Veldman wrote: > > Please forgive me, I can't figure out how to: > > 1. Access the getField("").display property - or - > 2. Execute the function ParticulierOfOndernemer > > Any help would be appreciatet > > > Mark Storer-2 wrote: >>

[iText-questions] iText Version 1.4.6 - com.lowagie.tools.concat_pdf - Purple Strip Lost, Not able to read Acro Fields

2010-01-11 Thread Phani Kumar Reddy Pamulapati
I have faced a problem where in I was not able to read the AcroFields from the PDF generated. I had logged the same issue earlier in the forum (Vol 44, Issue 6). My basic problem is, my console application was not able to read the fields from the PDF are where purple strip “Please fill out the

Re: [iText-questions] iText Version 1.4.6 - com.lowagie.tools.concat_pdf - Purple Strip Lost, Not able to read Acro Fields

2010-01-11 Thread Leonard Rosenthol
That tool REMOVES the form fields from the document when doing concatenation/merging. That's why you no longer get the strip nor can you fill the fields (as there aren't any). If you write your own version of concat that called t he CopyFields() methods (I think that's what it is called) then

Re: [iText-questions] Enable Conditional Textfield when filling out form

2010-01-11 Thread Mark Storer
Ah. Here's the script for that radio button: ParticulierOfOndernemer(); And in one of the document level scripts, the function itself: function ParticulierOfOndernemer() { checkwaarde = this.getField("ParticulierOfOndernemer").value; if (checkwaarde == "Particulier") { getField(

Re: [iText-questions] iText# - replacePushButtonField not respondingproperly with Acroform?

2010-01-11 Thread Jay Cha
Can someone explain to me why I have to rename the field in order for the code below to work? After the line fields.ReplacePushbuttonField("Submit", btn.Field) if I do fields.Renamefield("submit","new_submit") the button shows up properly with the "Submit New" text, however if I do not

Re: [iText-questions] Enable Conditional Textfield when filling out form

2010-01-11 Thread Dinand Veldman
Sample form is in the attachment. It is in Dutch. There's a checkbox "ParticulierOfOndernemer" with states ("Particulier","Ondernemer"). When state is set to "Particulier" textfield "BSNnummer" should be filled, otherwise textfield "BTWnummer". As I said, the value I assigned to BTWnummer is save

Re: [iText-questions] Watermark with rotated PDF

2010-01-11 Thread Mark Storer
No, the JavaDoc for that method isn't all that helpful. Sadly, it's not practical to go into the kind of detail that would be Really Helpful every time a method can take a transformation matrix... there are quite a few: addImage (2 of the overrides) addTemplate (ditto) concatCTM setTextMatrix (w

Re: [iText-questions] Enable Conditional Textfield when filling out form

2010-01-11 Thread Leonard Rosenthol
Can you post a sample form which demonstrates the problem? And do you know what technology/product is being used to read values on their end? -Original Message- From: Dinand Veldman [mailto:dveld...@gmail.com] Sent: Monday, January 11, 2010 12:34 PM To: itext-questions@lists.sourceforge

Re: [iText-questions] Enable Conditional Textfield when filling out form

2010-01-11 Thread Dinand Veldman
It's AcroForm technology. I've tried several approaches, but the value I've assigned doesn't appear, although it is in the document (I can read it programmatically). What actions has a CheckBox? Dinand 1T3XT info wrote: > > Dinand Veldman wrote: >> Hi, I want to fill out a form of the Dutch

Re: [iText-questions] Root Object is invalid or missing after PDF

2010-01-11 Thread de Beus, Eric
Paulo, Thanks. I'll look into it some more, and post my results if I figure anything out. - Eric -Original Message- From: Paulo Soares [mailto:psoa...@glintt.com] Sent: Thursday, January 07, 2010 3:29 PM To: Post all your questions about iText here Subject: Re: [iText-questions] Root Ob

Re: [iText-questions] Watermark with rotated PDF

2010-01-11 Thread Daniel Oliveras
There is nothing wrong with wrapping the PDFTemplate inside an Image, I simply wanted to know how works the addTemplate() method. I bought the book today, so now I can use it to get more information on iText, I'll read the pages hou recomended. Thank you very much for your time and Help. On Mon,

Re: [iText-questions] Roumanian characters not shown in HTMLWorker parsed fragments

2010-01-11 Thread Traian Decebal
It works great, Thanks a lot, NArcis On Mon, Jan 11, 2010 at 12:47 PM, 1T3XT info wrote: > Traian Decebal wrote: > >> the biggest problem that I face is using dicritics. I use dicritics just >> fine using a font that has them, but I can't get HTMLWorker to use the same >> font. >> > > This is a

Re: [iText-questions] Enable Conditional Textfield when filling out form

2010-01-11 Thread 1T3XT info
Dinand Veldman wrote: > Hi, I want to fill out a form of the Dutch Tax Authorities > (belastingdienst). They put checkboxes in their PDf forms which directs > you to certain field (most textboxes) I'm able to fill out the normal > textboxes and set the correct checkbox choices, but I can't fill

[iText-questions] Enable Conditional Textfield when filling out form

2010-01-11 Thread Dinand Veldman
Hi, I want to fill out a form of the Dutch Tax Authorities (belastingdienst). They put checkboxes in their PDf forms which directs you to certain field (most textboxes) http://old.nabble.com/file/p27108102/pdfform.png I'm able to fill out the normal textboxes and set the correct checkbox choic

[iText-questions] FW: Pdf signature validation

2010-01-11 Thread Sérgio Onofre
Hi, I’m using itext to sign pdf documents with smart cards certificates and it Works fine. I just don’t understand the difference between signing with WINCER_SIGNED or SELF_SIGNED, because in Acrobat Reader seems the same. What is the difference? The problem I have i

[iText-questions] Roumanian characters not shown in HTMLWorker parsed fragments

2010-01-11 Thread Traian Decebal
Hi all, I have an application that uses tinyMCE to allow users to input Word formated text. This text is translated into HTML fragments. These fragments need to be included in some PDF documents. I use plain itext for the generation of these documents. It works fine with some exceptions. One would

Re: [iText-questions] Watermark with rotated PDF

2010-01-11 Thread 1T3XT info
Daniel Oliveras wrote: > Thankyou very much, > > That information is not present on the API documentation and without the > transformation matrix info it is practically impossible to perform any > action. What's wrong with wrapping the PdfTemplate inside an Image? That solves all your problems.

Re: [iText-questions] How to make growing table in XFA Form with Itext

2010-01-11 Thread 1T3XT info
Wahyu Komara wrote: > I wonder why the table can't grow dynamicaly based on database/XML record > ?if the problem is the XML doesn't adhere to the XSD , why the resulted PDF > is filled , even only one record? That's perfectly possible if your subform can't grow. It all depends on how you created

Re: [iText-questions] Polish National Characters are not getting displayed in the PDF created by iTExt

2010-01-11 Thread 1T3XT info
hansgeerdink wrote: Excuse me, But, Mr. Bruno, IMHO, have you ever tried your code? Of course, see: http://1t3xt.info/examples/results/in_action/chapter09/peace.pdf This is a test file for all known languages. As you can see Hindic languages can't be rendered correctly. There's also a problem

Re: [iText-questions] Password Protection

2010-01-11 Thread 1T3XT info
rspwill...@gmail.com wrote: > Hai, > > I want to know how to convert html file into pdf and set the password > for the pdf file by using the itext Api in java .whenever the client > opens the pdf file it has to prompt the password ...with code example > much usful for me Go to http://www.manni

Re: [iText-questions] Watermark with rotated PDF

2010-01-11 Thread Daniel Oliveras
Thankyou very much, That information is not present on the API documentation and without the transformation matrix info it is practically impossible to perform any action. On Mon, Jan 11, 2010 at 9:10 AM, 1T3XT info wrote: > Daniel Oliveras wrote: > > My problem is that I can not find informa

Re: [iText-questions] How to make growing table in XFA Form with Itext

2010-01-11 Thread Wahyu Komara
Wahyu Komara wrote: > Dear All, > I make Interactive PDF form with Livecycle(LC), and I put Livecycle Table > Object in Form then I put TextField Object to each Table Cell, with this > form I want to make growing PDF table based on database. > > I found tutorial : ( > http://1t3xt.info/examp

Re: [iText-questions] Polish National Characters are not getting displayed in the PDF created by iTExt

2010-01-11 Thread hansgeerdink
Excuse me, But, Mr. Bruno, IMHO, have you ever tried your code? I also have been tryin to get Polish characters to display correctly Have been puzzling for a week now, asked a Java expert to help, still your code does NOT display polish characters correctly. I need to stamp a form with databa

[iText-questions] Password Protection

2010-01-11 Thread rspwilliam
Hai, I want to know how to convert html file into pdf and set the password for the pdf file by using the itext Api in java .whenever the client opens the pdf file it has to prompt the password ...with code example much usful for me Thank you.. -

Re: [iText-questions] Watermark with rotated PDF

2010-01-11 Thread 1T3XT info
Daniel Oliveras wrote: > My problem is that I can not find information on how works the > transformation matrix so I can indicate that I want to rotate 90º > clockwise or whatever angle I want. Every attempt I have made results > on strange rotations in various axis on the same time. It's high