由于项目需要,需要打印文档,以前在VB时代,用水晶报表还是很顺手,但在VS 2005中我是第一次使用该功能。
在VS 2005中使用水晶报表的方法有2种,我个人推荐使用push法。推模式中的水晶报表是个模板,把在设计器里报表的格式设好后,再组装DataSet就可以生成报表了。
示例如下:
//水晶报表数据赋值
DB_Common da = new DB_Common(); // db class
string strsql = "";
strsql += "select * from table ";
DataSet ds = da.ExceDS(strsql);
Response.Write(ds.Tables[0].Rows[0][0].ToString());
CrystalReportSource1.ReportDocument.Load(Server.MapPath("..//inc//Crystal//Asset_Txn.rpt"));
CrystalReportSource1.ReportDocument.SetDataSource(ds.Tables[0]);
截止到这里,在预览的时候就能正常显示编辑的图片的。
切记,这里的select 后面的参数,跟你设计报表的db字段必须一样,否则会显示不出来。
---------------------------------
如果 出现“加载报表失败”
看上文中的粗体部分
检查file的默认路径。如果三层目录下,VS不是自动识别的