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.
Printable View
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.
Declare the object
Assign a valueCode:Dim objText As CrystalDecisions.CrystalReports.Engine.TextObject = Report.ReportDefinition.Sections(1).ReportObjects("Mytxt")
Code:objText.Text = "ABC def GHI"
What about with a rdlc instead of rpt?
Thank you very much jggtz .
It works.
I dont know what is that?Quote:
What about with a rdlc
http://msdn.microsoft.com/en-us/libr...67(VS.80).aspxQuote:
Originally Posted by shukla