using System;using CrystalDecisions.CrystalReports.Engine;using CrystalDecisions.Shared;namespace Report { public partial class Report : Document { public void ReportLoad() { ReportDocument reportDocument = new ReportDocument(); string filePath = "C:\Projects\Application\Report\CrystalReport.rpt"; reportDocument.Load(filePath); crystalReportViewer.ReportSource = reportDocument; } }}