Report and memo field

I’d like to include a memo field into a report but when I print it, the size of the report doesn’t follow the size of the memo field Even with ‘auto’ propriety, the field on the report have only 5 rows. With the ‘column height’ it’s worth, the size of the field on the report become null. Thanks for your help. Best Regards, R. Odoardi

I’d the solution on technet.navision.com by zoechi (austria). “add this to the executeSection method ReportStringControl rsc = this.controlName(“NameOfYourCtrl”); rsc.height100mm(rsc.heightOfWordWrappedString100mm(yourDataSource.YourDataField)); yourDataSource.YourDataField could be also a display method. This should return the string the memofield contains.” and it’s work very well…