2010-01-08 59 views

回答

1

您可以在運行時通過代碼設置報告的數據源,以便您的報告不需要連接到數據庫。

CrystalReport1 report = new CrystalReport1(); 
DataTable dt = new DataTable(); 
report.SetDataSource(dt); 
crystalReportViewer1.ReportSource = report; 
crystalReportViewer1.Refresh(); 
相關問題