I have a word document with vbs code in the text where it's going with the
help of a third party software to catch variables <variable>. (like crystal
report).to build the .document to be printed.
it was ok in word97, but now in the new version when the variable contain
Char(13) and it is in a table it add a square!!! instead a carriage return.
It works well outside of a table..
Is there something else to add a vbcode to be view like a CR in the tables.
to see
address
name
city
instead
address + little square + name + little square + city
when a string with CR included in it is sent to the word doc within a table
Need help.....
thanks,
Joe
Jezebel - 03 Feb 2005 03:41 GMT
carriage return is Chr(13) -- vbCR -- inside a table, same as anywhere else
in the document. Bear in mind that an empty cell in Word always ends with
chr(13)chr(7).
>I have a word document with vbs code in the text where it's going with the
> help of a third party software to catch variables <variable>. (like
[quoted text clipped - 25 lines]
>
> Joe