Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Crystal Reports Wrapping Text Field from Dataset

I'm working with crystal reports and visual studio 2010 to show a reports from sql server database. So i have this large text field (varchar(500)) and retrieved it with dataset to generate the reports. The problem is, the text field on my report instead of wrapping the text to fit the box, it cuts off on the right hand side and does not bring it down a line. I did not see any design time properties that looked like they directly affected the text wrapping function. What i have done so far :

  1. I have use the can grow option and set the approciate limit, but it still overlaping the line.
  2. I Also have try to insert the datafield inside text object, but nothing changed.

The screenshot is here http://imageshack.us/f/11/44079942.jpg/

What am I missing?

Thankyou in advance

pe2s

like image 578
user1995810 Avatar asked Feb 14 '13 09:02

user1995810


2 Answers

Right click on the text field, select 'format object', go to the common tab, and check "Can Grow". This allows the textbox to grow down as the text wraps.

like image 85
kristianp Avatar answered Sep 22 '22 16:09

kristianp


Try this,

  1. Right click the field you want to word wrap
  2. Select "Format Object" option
  3. select "Can Grow" checkbox
  4. Maximum number of lines "1" or keep it "0" to ignore line limit.

This should work..

like image 24
Jidheesh Rajan Avatar answered Sep 18 '22 16:09

Jidheesh Rajan