Binding objects with Carriage Returns

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have 2 "memo" fields that are setup as such.

1: Name
2: Statement

The fields are entered through a web-service. The memo #1 has to have a
replace ran against it to put in a carriage return so that each name starts
on a new line. The same process had to be ran on the #2 (statement) so that
each statement started on a new line.

I now need to make sure the name and the statements stay together. When the
#2 (Statement) goes over a line long (very common), it starts on a new line
with the "grow" function.

The issue is that the #2 Statement gets "out of line" with the #1 (Name) and
gets to be near impossible to know what statment goes with what line.

Is there any way to "join" the 1 line of the name with the 1st line of the
narrative, the 2nd (name) with the 2nd (Statement) and so on?

Thank You for your input!!!!

Blaze
 
Use a new record for each Name-Statement. Use a text field for the name as I
do not think any name exceeds 255 characters.
 
The reason that I have to use a "memo" on both, the web-service requires me
to do this to see all the entries. It does a merge on the items in the field
and seperates witha chr(10).

bl
 
Back
Top