or
private void detail_ItemDataBound(object sender, System.EventArgs e) |
{ |
Telerik.Reporting.Processing.DetailSection detailSection = (Telerik.Reporting.Processing.DetailSection)sender; |
detailSection.Height.Subtract(new Telerik.Reporting.Drawing.Unit(2.0, Telerik.Reporting.Drawing.UnitType.Cm)); |
} |
private void detail_ItemDataBinding(object sender, System.EventArgs e) |
{ |
Telerik.Reporting.Processing.DetailSection detailSection = (Telerik.Reporting.Processing.DetailSection)sender; |
detailSection.Height.Subtract(new Telerik.Reporting.Drawing.Unit(2.0, Telerik.Reporting.Drawing.UnitType.Cm)); |
} |
"The expression contains object 'FirstName' that is not defined in the current context."
"FirstName" is a field in the "Users" table of the DataSet. I used the DataExplorer to drag the "FirstName" field on to the report, so it is just a TextBox with the value of "=FirstName". The FirstName text box is in the Details section of the report.
What am I doing wrong?