Hi, im using crystal report on my project. It working very well but I just want o make it more flexible.
I have textobjects with of course text in it. They are not bound since they are just additional information on my report. How can i make those textobject editable during runtime? Something like on mouse click, i may able to edit it like in what we do in design? do i need to add program in my project? Im using vb.net 2010
I use this code to call my report
Dim sett As New DataSet1
Dim oRpt As New Accountability
Dim obj As CrystalDecisions.CrystalReports.Engine.TextObject
obj = oRpt.ReportDefinition.Sections("Section5").ReportObjects.Item("txtRel")
'Connection code, sql query here
Rpt.SetDataSource(dta)
frmReport.CrystalReportViewer1.ReportSource = oRpt
frmReport.CrystalReportViewer1.RefreshReport()
frmReport.Show()
I textobject i need to edit is not bound. Its created during design time
Thanks for helping