Click here to Skip to main content
15,884,298 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hi,
Iam using Crystal reports in my c# Application.
I want to know whether i can make grow a text box which has number value.
In format object it is not possible.
So i want to know whether is there any possible way to do that

Thanks
Regards
Nirmala Saravanan
Posted

1 solution

You can try the following code. Please let me know is it working or not I haven't try this in my application but got it on net...

Dim cryRpt As New CrystalDecisions.CrystalReports.Engine.ReportDocument
cryRpt.Load(Server.MapPath("..\ReportPrint\CrystalReport.rpt"))
cryRpt.Database.Tables(0).SetDataSource(dsHdr.Tables(0))
cryRpt.Database.Tables(1).SetDataSource(dsDtl.Tables(0))
CrystalReportViewer1.Visible = True
CrystalReportViewer1.ReportSource = cryRpt

Dim myTextObjectOnReport As CrystalDecisions.CrystalReports.Engine.TextObject

myTextObjectOnReport = CType(cryRpt.ReportDefinition.ReportObjects.Item("Text4"), CrystalDecisions.CrystalReports.Engine.TextObject)

myTextObjectOnReport.Text = "Text you want for text object"
myTextObjectOnReport.Width = 500
myTextObjectOnReport.Color = Drawing.Color.BlueViolet

let's try the same... Thanx
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900