生活靠自己
求别人不如求自己!
IT博客
首页
新随笔
新文章
联系
聚合
管理
posts - 6,comments - 2,trackbacks - 0
<
2005年6月
>
日
一
二
三
四
五
六
29
30
31
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
1
2
3
4
5
6
7
8
9
常用链接
我的随笔
我的评论
我参与的随笔
留言簿
给我留言
查看公开留言
查看私人留言
随笔档案
2005年7月 (2)
2005年6月 (4)
相册
图片
搜索
最新评论
1. re: 今天在ebay上买了两运动器材
评论内容较长,点击标题查看
--yzf
2. re: 靠大学真好
呵呵 是呀 大学是年轻人的天堂~``
--~O~ 馒头
阅读排行榜
1. 水晶报表备忘录(284)
2. 一个通用的分页存储过程(246)
3. 终于理通了.text代码是啥回事,在此留个纪念(224)
4. 靠大学真好(218)
5. 今天在ebay上买了两运动器材(199)
评论排行榜
1. 靠大学真好(1)
2. 今天在ebay上买了两运动器材(1)
3. 终于理通了.text代码是啥回事,在此留个纪念(0)
4. 水晶报表备忘录(0)
5. 一个通用的分页存储过程(0)
水晶报表备忘录
private
void
Button1_Click(
object
sender, System.EventArgs e)
{
//
ParameterField ParamField = new ParameterField();
//
ParameterFields ParamFields = new ParameterFields();
//
ParamField.ParameterFieldName = "testname";
//
//
离散值
//
ParameterDiscreteValue DiscreteVal = new ParameterDiscreteValue();
//
DiscreteVal.Value = "panxin";
//
//
赋值
//
ParamField.CurrentValues.Add(DiscreteVal) ;
//
//
将该字段加如到字段集合中
//
ParamFields.Add(ParamField) ;
//
//
不允许该字段弹出提示
//
ParamField.AllowCustomValues = false ;
//
//
//
将公式绑定到具体字段
//
//
CrystalReportViewer1.ParameterFieldInfo = ParamFields ;
//
this.CrystalReportViewer1.ReportSource="C:\\Inetpub\\wwwroot\\WebApplication1\\bin\\PHReport.rpt";
ReportDocument rdc
=
new
ReportDocument();
rdc.Load(
"
C:\\Inetpub\\wwwroot\\WebApplication1\\bin\\PHReport.rpt
"
);
//
rdc.SetDataSource();
Subreports subrdcs
=
rdc.Subreports;
ReportDocument subrdc
=
subrdcs[
"
subreprot1
"
];
//
*************************************************
SqlConnection _connection
=
new
SqlConnection(
"
server=192.168.0.8;uid=sa;pwd=;database=dbtest;persist security info=False;packet size=4096
"
);
_connection.Open();
SqlDataAdapter sda
=
new
SqlDataAdapter(
"
select top 2 * from songs
"
,_connection);
DataSet ds
=
new
DataSet();
sda.Fill(ds,
"
songs
"
);
_connection.Close();
//
*********************************************
subrdc.SetDataSource(ds);
subrdc.DataDefinition.FormulaFields[
"
formulafield1
"
].Text
=
"
{songs.ssongname}
"
;
subrdc.DataDefinition.FormulaFields[
"
formulafield2
"
].Text
=
"
{songs.ssingername}
"
;
ParameterField ParamField
=
rdc.ParameterFields[
"
testname
"
];
ParameterDiscreteValue DiscreteVal
=
new
ParameterDiscreteValue();
DiscreteVal.Value
=
"
panxin
"
;
ParamField.CurrentValues.Add(DiscreteVal);
CrystalReportViewer1.ReportSource
=
rdc;
}
posted on 2005-06-30 13:53
MyRiverMan
阅读(284)
评论(0)
编辑
收藏
引用
只有注册用户
登录
后才能发表评论。