1. 程式人生 > >winfrom 水晶報表制作

winfrom 水晶報表制作

menu 表名 bug alt body fill urn source query

1,下載安裝軟件CRforVS_13_0_4.exe

2,使用vs2010,新建.net3.0項目,註意報表軟件只支持3.0,3.0以上的不支持技術分享圖片

3,添加報表文件

技術分享圖片

技術分享圖片

4,設計報表界面

技術分享圖片

5,添加數據對象

技術分享圖片

6,添加MSSQL對象

技術分享圖片

7,填入數據

技術分享圖片

8,導入表格

技術分享圖片

9,拉動字段到頁面上

技術分享圖片

10,書寫程序(註意報表的路徑,本文把報表文件拷貝到bin/dubug文件夾下),或者直接在頁面添加 crystalReportViewer1,右上角創建報表

 string sqlstr = "select * from S_Menu";
            DataSet data = SQL_helper.Sql_helper.Query(sqlstr);
            
try { //使用報表加載數據 ReportDocument myreport = new ReportDocument(); string reportPath = "report.rpt"; myreport.Load(reportPath); myreport.SetDataSource(data); crystalReportViewer1.ReportSource = myreport; }
catch(Exception ex) { MessageBox.Show(ex.Message); }

技術分享圖片

11,運行結果

技術分享圖片

12註意fill的別名必須要和表名一樣

        /// <summary>  
        /// 執行查詢語句,返回dataset  
        /// </summary>  
        /// <param name="sqlstring"></param>  
        /// <returns></returns>  
        ///
public static DataSet Query(string sqlstring) { using (SqlConnection connection = new SqlConnection(str)) { DataSet ds = new DataSet(); try { connection.Open(); SqlDataAdapter command = new SqlDataAdapter(sqlstring, connection); command.Fill(ds, "S_Menu"); } catch (System.Data.SqlClient.SqlException ex) { throw new Exception(ex.Message); } return ds; } }

winfrom 水晶報表制作