winfrom 水晶报表制作
2021-07-26 02:54
阅读:683
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的别名必须要和表名一样
////// 执行查询语句,返回dataset /// /// /// /// 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; } }
评论
亲,登录后才可以留言!