Hi
I am trying to save a report from infostore to a disk (ex:c\crystalreport.pdf), using the following statement
How can i find the path to the report. I have tried giving a physical path on my local drive for source and that works fine. But i don't know how can i find that path for the original reports from infostore.
Hope some one can help me to solve this.
I am trying the above one in csharp, so any help will be very much appreciated.
Thanks
I am trying to save a report from infostore to a disk (ex:c\crystalreport.pdf), using the following statement
Code:
eportDocument crReportDocument = new ReportDocument();
crReportDocument.Load(source_path_to_report);
//Export the report to disk.
crReportDocument.ExportToDisk(ExportFormatType.PortableDocFormat, destination_path);
How can i find the path to the report. I have tried giving a physical path on my local drive for source and that works fine. But i don't know how can i find that path for the original reports from infostore.
Hope some one can help me to solve this.
I am trying the above one in csharp, so any help will be very much appreciated.
Thanks