Hello,
I am using CrystalReportViewer and CrystalReportSource to load and display an .rpt file in my application.
The situation I have is this:
Say a person created a crystal report outside of my application and set its datasource to database A.
then I use that .rpt file in my application but I need to bind it to a different db(identical to the original one in terms of table structure and column names but with different connection string and user name and password).
How do I do that in C# code?
Currtnly I load the report using:
this.CrystalReportSource1.ReportDocument.Load(reportsSubfolder + report.ReportFileName); //it is here that I need to change the connection data of the report.
Thanks very much in advance.
Susan