Hi,
In windows application, I was trying to add a Telerik.Reporting.TextBox in report object's detail secation. I wrote something like this
Dim ri as New Telerik.Reporting.TextBox()
ri.Visible = True
ri.Value = "hello"
Report1.detail.Items.Add(ri)
ri.Left = Report1.empIDDataTextBox.Left + New Unit(100)
ri.Top = Report1.empIDDataTextBox.Top
ReportViewer1.RefreshReport()
I think it should display my newly added column/item but it wasnt.
Or is there any other way to add a new item/field/column in report dynamically?
Thanks.
In windows application, I was trying to add a Telerik.Reporting.TextBox in report object's detail secation. I wrote something like this
Dim ri as New Telerik.Reporting.TextBox()
ri.Visible = True
ri.Value = "hello"
Report1.detail.Items.Add(ri)
ri.Left = Report1.empIDDataTextBox.Left + New Unit(100)
ri.Top = Report1.empIDDataTextBox.Top
ReportViewer1.RefreshReport()
I think it should display my newly added column/item but it wasnt.
Or is there any other way to add a new item/field/column in report dynamically?
Thanks.