TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
David Smith
NA
2k
0
SubreportprocessingEvent not firing
Nov 13 2010 1:33 AM
Can someone help with this, I have been doing my research , and alot of people having alot of problems, its hard to trace this.
I have subreports in the main report. Its not even executing the subreport, everytime i hit the toggle button, it saids data not retrieve, its never getting into the
LocalReport_SubreportProcessing function
protected
void
LocalReport_SubreportProcessing(
object
sender, Microsoft.Reporting.WinForms.
SubreportProcessingEventArgs
e)
{
e.DataSources.Add(
new
ReportDataSource
(
"Datatable"
,
this
.BindingSource));
reportViewer.LocalReport.ReportEmbeddedResource =
"Example.rdlc"
;
this
.rDataSource.Value =
this
.Generic_DatatableBindingSource;
this
.titleParameter =
new
ReportParameter
(
"BookTitle"
,
this
.BookTitle);
this
.reportViewer.LocalReport.SetParameters(
new
ReportParameter
[] { titleParameter });
this
.reportViewer.LocalReport.DataSources.Add(rDataSource);
this
.reportViewer.LocalReport.Refresh();
this
.reportViewer.RefreshReport();
}
Reply
Answers (
2
)
Multithreading Beginner question - Forms
i have creadted a windows application with 5 textboxes, how can i know which textbox is selected among 5 textboxes