Hi,
I created a report with a wizard and its working well.
At below the detail space i drag a drop the chart. when i see the preview i cannot able to see the chart.
Simple again i drop a textbox to test whether its displaying any value from the textbox or not. Even i cannot able to see any thing.
I would like to once the data is generated from the wizard, can we not able to place any controls in the detail section.
Moreover, i would like to know how to connect the report through programmatcially. Please give me a practical example.
Thanks.
Regards
Syed Arshad
BNID =
"1270"
System.Web.HttpContext.Current.Session(
"BNID") = BNID
Dim Report As Telerik.Reporting.Report
Report =
New DataEntryScreen
Report.ReportParameters(0).Value = BNID
reportBook.Reports.Add(Report)
BNID =
"1271"
System.Web.HttpContext.Current.Session(
"BNID") = BNID
Dim Report2 As Telerik.Reporting.Report
Report2 =
New DataEntryScreen
Report2.ReportParameters(0).Value = BNID
System.Web.HttpContext.Current.Session(
"BNID") = BNID
reportBook.Reports.Add(Report2)
ReportViewer1.Report = reportBook
In my DataEntryScreen.vb page:
Public
Sub New()
InitializeComponent()
'Grab the BNID to use
Dim BNID As String = System.Web.HttpContext.Current.Session("BNID")
'Populate the Parameters
Me.DataEntryDetailsReport1.ReportParameters(0).Value = BNID.ToString
End Sub
Any help?