直接导出为pdf

时间:2013-02-25 17:58:59

标签: c# winforms crystal-reports-2008

我使用两个存储过程,一个用于主报表,另一个用于子报表。以下是代码。

 private void LoadSalesOrderReport()
 {
     string Type = gvQuotationDetails.Rows[QuoteIndex].Cells["Type"].EditedFormattedValue.ToString();
     FilePath = ConfigurationManager.AppSettings["EMP_IMG_PATH"].ToString() + "\\" + ValQuoteID.ToString() + ".pdf";
     DeleteExistingFile(FilePath);
     try
     {
         AccountsPayableMaster objAPM = new AccountsPayableMaster();
         QuotationReport obj = new QuotationReport();
         objReportDocument.Load(Application.StartupPath + @"\rptQuotationReport.rpt");
         obj.crysQuotationReport.LogOnInfo = objAPM.ConnectionDetails("SD_SalesOrderReport;1");
         obj.crysQuotationReport.LogOnInfo = objAPM.ConnectionDetails("SD_GetBatchReportDetails;1");
         obj.crysQuotationReport.ReportSource = objReportDocument;
         objReportDocument.SetParameterValue("@QuoteID", ValQuoteID);
         objReportDocument.SetParameterValue("Type", "-" + Type.ToUpper() + "-");
         objReportDocument.SetParameterValue("@QuoteID", ValQuoteID, objReportDocument.Subreports[0].Name.ToString());
         string[] Print = objAPM.GetPrintDetails();
         SetPrintParameters(objReportDocument, Print);
         obj.Show();
         objReportDocument.ExportToDisk(ExportFormatType.PortableDocFormat, FilePath);

     }
     catch (Exception ex)
     {
         MessageBox.Show(ex.Message);
     }
     OpenPdfFile();
 }

 private void OpenPdfFile()
 {
     try
     {
         Process.Start(FilePath);
     }
     catch (Exception ex)
     {
         MessageBox.Show("Please install MicrosoftOffice/Pdf Reader to view files", "", MessageBoxButtons.OK, MessageBoxIcon.Information);
     }
 }

代码工作正常。但问题是。当我点击前端的按钮直接显示pdf时,也会显示水晶报表,我知道我在代码中使用 obj.Show 的原因。我试着评论但是它会抛出一个错误。任何人都可以建议我的代码中的更改直接显示pdf而不是crystalreport表单。

enter image description here

0 个答案:

没有答案