I have a form that contains a text field and saves the document.
I then have a Lotus Script agent written to access the document and extract the data. If the data entered contains more than one paragraph (hard return), only the first paragraph is picked up.
I know that there was some fooling around in R5 to get this fixed, but is there a simpler way in R6?
Any ideas or suggestions would be greatly appreciated. Thanks in advance.
Subject: Text Formatting - Fix in R6?
What do you meen by “fixed”?What is “picked up”?
If the field definition is right (single- or multy-value, correct delimiters, etc.), everything works okay - in both 5 and 6 releases.
Regards,
Simeon
Subject: RE: Text Formatting - Fix in R6?
Okay, now I realized your problem:If the field is multy-value, you need to access it as NotesItem and use ForAll to get all values.
As alternative, you can use @Implode to get all values as a single string.
Simeon
Subject: RE: Text Formatting - Fix in R6?
Thanks - I’ll give it a try!