I am using vb.net and crystalreport 9.0 i want a way by which i can put text in textbox object of rpt file at run time.
WHETHER YOU SUCCEED OR FAIL IS NOT AS IMPORTANT AS WHETHER YOU TRIED YOUR BEST
Declare the object Code: Dim objText As CrystalDecisions.CrystalReports.Engine.TextObject = Report.ReportDefinition.Sections(1).ReportObjects("Mytxt") Assign a value Code: objText.Text = "ABC def GHI"
Dim objText As CrystalDecisions.CrystalReports.Engine.TextObject = Report.ReportDefinition.Sections(1).ReportObjects("Mytxt")
objText.Text = "ABC def GHI"
What about with a rdlc instead of rpt?
Thank you very much jggtz . It works. What about with a rdlc I dont know what is that?
Originally Posted by shukla RDLC I dont know what is that? http://msdn.microsoft.com/en-us/libr...67(VS.80).aspx
Forum Rules