我試圖水晶報表導出爲PDF格式在Windows窗體application.My Crystal報表從MySQL Database.Here獲取數據是我的代碼相同..負載報告水晶失敗報告
ReportDocument doc = new ReportDocument();
doc.Load("CrystalReport1.rpt");
doc.SetDataSource(dttable);
SaveFileDialog saveas = new SaveFileDialog();
saveas.Filter = "*.pdf|(PDF File)";
if (saveas.ShowDialog() == DialogResult.OK)
{
doc.ExportToDisk(ExportFormatType.PortableDocFormat, saveas.FileName + ".pdf");
MessageBox.Show("Report Exported !");
}
在運行上面的代碼。我收到錯誤
「加載報告失敗」在行
doc.Load("CrystalReport1.rpt");
請幫我解決這個問題。
還是同樣的錯誤 – Ram
你能告訴更多關於你的錯誤? – ludocal
CrystalReports異常未被用戶代碼處理。負載報告失敗 – Ram