or
this
.Filters.Add(
"=Fields.Name"
, Telerik.Reporting.Data.FilterOperator.Like,
"=Parameters.paraName.Value"
);
private void InitializeComponent() {
this.textBoxContents.Location = new Telerik.Reporting.Drawing.PointU(new Telerik.Reporting.Drawing.Unit(0.700118362903595D, Telerik.Reporting.Drawing.UnitType.Inch), new Telerik.Reporting.Drawing.Unit(1.2142907381057739D, Telerik.Reporting.Drawing.UnitType.Inch)); this.textBoxContents.Name = "textBoxContents"; this.textBoxContents.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(5.7998027801513672D, Telerik.Reporting.Drawing.UnitType.Inch), new Telerik.Reporting.Drawing.Unit(0.28570938110351562D, Telerik.Reporting.Drawing.UnitType.Inch)); this.textBoxContents.Value = "<html><p>hard coded paragraph.</p></html>"; this.textBoxContents.ItemDataBound += new System.EventHandler(this.textBoxContents_ItemDataBound);
}
private
Telerik.Reporting.HtmlTextBox textBoxContents;
private void textBoxContents_ItemDataBound(object sender, EventArgs e)
{
Telerik.Reporting.Processing.HtmlTextBox bodytextbox = sender as
Telerik.Reporting.Processing.HtmlTextBox;
if (bodytextbox != null)
bodytextbox.Value = "<html><p>My paragraph.</p></html>";
}
'Telerik.Reporting.ReportParameter' does not contain a definition for 'UI' and no extension method 'UI' accepting a first argument of type 'Telerik.Reporting.ReportParameter' could be found (are you missing a using directive or an assembly reference?