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?
this.Filters.AddRange(new Telerik.Reporting.Data.Filter[] {
new Telerik.Reporting.Data.Filter("= Fields.[Activity_Code]", ((Telerik.Reporting.Data.FilterOperator)(Telerik.Reporting.Data.FilterOperator.In)), "= Parameters.[Activity_Code]"),
reportParameter2.Name =
"Activity_Code";
reportParameter2.UI.AvailableValues.DataSource = dsUsers.Tables[0];
reportParameter2.UI.AvailableValues.ValueMember =
"Activity_Code";
reportParameter2.UI.MultiValue =
true;
reportParameter2.UI.Text =
"Activity Code";
reportParameter2.UI.Visible =
true;
the dropdown box shows require field symbol ..I can,t select empty value in dropdown...
since I have empty data also in that column..
give me the soln..as early u can..
Its very urgent to me...
thanx again in advance