Here is the Simple Code :-
===================
CrystalReport1 Obj = new CrysralReport1();
//Set a Crystal Reports text object at runtime
CrystalDecisions.CrystalReports.Engine.TextObject txtQuotationNum = ((CrystalDecisions.CrystalReports.Engine.TextObject)crQuotation.ReportDefinition.Sections["Section1"]
.ReportObjects["txtQuotation"]); // "txtQuotation" is the TextObject name mention on Crystal Report Viewer.
txtQuotationNum.Text = "bla bla bla...";
crystalReportViewer1.ReportSource = crQuotation;
===================
CrystalReport1 Obj = new CrysralReport1();
//Set a Crystal Reports text object at runtime
CrystalDecisions.CrystalReports.Engine.TextObject txtQuotationNum = ((CrystalDecisions.CrystalReports.Engine.TextObject)crQuotation.ReportDefinition.Sections["Section1"]
.ReportObjects["txtQuotation"]); // "txtQuotation" is the TextObject name mention on Crystal Report Viewer.
txtQuotationNum.Text = "bla bla bla...";
crystalReportViewer1.ReportSource = crQuotation;