Re: Wrapping Criteria
Hello,
Can Report builder wrap on a given character? Let me give you an example.
E1, E10, E11 ... Here's the data.
E1, E10, E1
1 ... Here's what happens when stretech is set to true in
a memo field.
E1,
E10,
E11 ... This is the result I would like to see.
Can you wrap in a dbmemo field on a comma?
Thanks
Tim
Can Report builder wrap on a given character? Let me give you an example.
E1, E10, E11 ... Here's the data.
E1, E10, E1
1 ... Here's what happens when stretech is set to true in
a memo field.
E1,
E10,
E11 ... This is the result I would like to see.
Can you wrap in a dbmemo field on a comma?
Thanks
Tim
This discussion has been closed.
Comments
There is no built-in way to get a TppMemo object to break on a certain
character. It looks however that you do have the CharWrap property set to
True for your memo object.
It is possible to add CRLF characters to a memo, which will give you the
same effect. Before the memo prints, simply search through the TppMemo.Text
for a given character and add the "#13#10" characters after each occurrence.
--
Regards,
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com
not how and that's why I was wondering.
pprtfmemo automatically interupt these characters too.
Thanks again ...