How I can apply a variable value that stored in run time with report header
Pl. help
sumasri
Printable View
How I can apply a variable value that stored in run time with report header
Pl. help
sumasri
Here's one way,
Here's another,Code:Dim rpt As New rptSomeReport
Dim objT As CrystalDecisions.CrystalReports.Engine.TextObject
objT = DirectCast(rpt.GroupHeaderSection1.ReportObjects("AssessMemo1"), CrystalDecisions.CrystalReports.Engine.TextObject)
objT.Text = TextBox1.Text
Code:Dim rpt As New rptSomeReport
rpt.SummaryInfo.ReportTitle = "whatever you want"