Click here to Skip to main content
15,885,915 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Dear Friends,

Here iam Developing an Application with RDLC Reports in that iam Facing the Problem with the Exact path of application
C#
private void BindSchoolInformation()
      {
          try
          {

              this.reportViewer1.RefreshReport();
              Assembly _assembly = Assembly.GetExecutingAssembly();
              //reportViewer1.LocalReport.ReportPath = Application.ExecutablePath;
               string str = Application.UserAppDataPath;
              //StreamReader subreport = new StreamReader(_assembly.GetManifestResourceStream("ZReports.Report1.rdlc"));
              //// StreamReader subreport = File.OpenText(@"C:\Users\Administrator\Documents\Visual Studio 2010\Projects\ReportApplication\Report2.rdlc");
              this.reportViewer1.LocalReport.ReportEmbeddedResource = 
"ZReports.Report1.rdlc"
   reportViewer1.LocalReport.DataSources.Clear();
                    reportViewer1.LocalReport.DataSources.Add(new ReportDataSource("dataTableSchool", dataTableSchool));
                    reportViewer1.LocalReport.SetParameters(paramtr);
                    this.reportViewer1.RefreshReport();
;
}
}


But iam unable to catch the Exact path of the Project.In my application iam handling lot of Projects in that ZReports is one of the Project.In that iam Getting the Exception is An error occurred during local report processing.This Exception iam getting.



Regards,

Anilkumar.D
Posted
Comments
Toli Cuturicu 17-Nov-12 20:28pm    
Oh...

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900