Reputation: 1127
I am facing a very strange problem while working with crystal report in vs 2012. I am using a formula field to create a string and displaying that field in my report.
But the problem is that while executing this report, the text in that field automatically wraps before ending of the current line.
I've absolutely no idea what am i doing wrong.
Refer to the attached snapshot. The text in line "1" is wrapping way before line ending.
Code that I am using in the formula field:
'आपको उकत आवस जरिये लॉटरी/दिनांक '+CStr({LottaryAllotment_Detail.AllotmentDate},"dd MM yyyy")+' को रुपये '+CStr({Master_Lottary.TotalAmount})+' मे आंवटन किया गया है।'+' '+ 'आप द्धारा आवास गृह की अमानत व पूर्व ग्रहण राशी रु '+ cstr({Master_Lottary.EarnestMoney})+' जमा करा दी है एवं शेष राशी किश्तो में जमा करने बाबत मांग पत्र मांग पत्र जारी किया जा चुका है।'
Upvotes: 2
Views: 1893
Reputation: 2031
I think this problem has to do with the character encoding since you use Hindi language. Try to set the font to Arial Unicode MS this will solve it.
Upvotes: 1