彩票走势图

DevExpress的XtraReports使用心得(二)

原创|其它|编辑:郝浩|2012-08-31 15:57:45.000|阅读 2916 次

概述:本文主要讲述使用xtrareport设计报表,调用报表,传递参数,追加空白行,打印导出PDF方面的心得体会。

# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>

DevExpress的XtraReports使用心得(一)

以前我一直用reportmachine设计报表,不过这次做B/S开发放弃了rm ,不是 rm不好用,应该说rm有许多优点,例如两种报表样式,设计报表的速度快,许多 功能符合中国式报表等等。但是rm要用在web开发中还是有一些问题的 ,例如报 表预览的时候经常失败,还要更改计算机安全等级(也有园友通过支付宝证书进 行代码签名解决此问题,不过计算机没有使用过支付宝,这个方案就失败了 ) ,最要命的是缺少帮助文件,技术支持不太理想。这里就不在具体的评价两种报 表工具的优缺点了 ,还是言归正传谈谈心得体会:

1、设计报表

 建议通过RibbonEndUserDesignerDemo设计报表。个人感觉要比在VS中设计方 便的多。

2、调用报表

Dim rpt As New DevExpress.XtraReports.UI.XtraReport
rpt.LoadLayout(MapPath (Common.ConfigHelper.GetConfigString("ReportFile")) & "CerDetail.repx")
rpt.DataSource = ds
ReportViewer1.Report = rpt

在这顺便提一下,有的同志提问说ds.Tables.Add(dt)会出现ds中已存在此 table,其实通过如下方法就可以解决

Dim dt As New DataTable
dt = sm.GetList_CerEmp("").Copy
dt.TableName = "CerEmp"    ‘CerEmp自己定义的
ds.Tables.Add(dt)

3、传递参数

Dim rp As New DevExpress.XtraReports.UI.XtraReport

        Dim item As New DevExpress.XtraReports.Parameters.Parameter
item.Name = ""

        item.Value = ""
rp.Parameters.Add(item)

request parameters 属性设置为NO

4 、追加空白行

通过报表的FillEmptySpace事件就可以实现了 ,给出代码

Private Sub OnFillEmptySpace(ByVal sender As Object, ByVal e As DevExpress.XtraReports.UI.BandEventArgs)
Dim Tab As New XRTable()
Tab.Size = New Size(692, e.Band.Height)
Tab.location=New Point(8, 0)
' Set the table's borders.
Tab.BorderWidth = 1
Tab.Borders = DevExpress.XtraPrinting.BorderSide.All

    for i as integer=1 to Convert.ToInt32(e.Band.Height / Me.tableCell18.Height)
dim row as new XRTableRow
Row.Size = New Size(692, 25)
'Row.location=New Point(8, i*25)

      ' Make the borders for all its cells visible.
'Row.Borders = DevExpress.XtraPrinting.BorderSide.All

      ' Sets the border width for all its cells.
'Row.BorderWidth = 1

      ' Add a collection of cells to the row.
Row.Cells.AddRange(CreateArrayOfCells(i))
' e.Band.Controls.Add(row)
tab.Rows.Add(Row)

    next i
e.Band.Controls.Add(tab)
End Sub

Private Function CreateArrayOfCells(byval n as integer)
' Create an array of XRTableCell objects.
Dim CellCollection As XRTableCell() = New XRTableCell(4) {}

   ' Initialize the cells.
Dim i As Integer
For i = 0 To CellCollection.Length - 1
CellCollection(i) = New XRTableCell()
'CellCollection(i).BackColor = Color.Aqua
CellCollection(i).TextAlignment = TextAlignment.MiddleCenter
if n =1 then
CellCollection(0).font=New Font("楷体_GB2312", 9)
CellCollection(0).text="以下空白"
end if
if i=0 then
CellCollection(0).Size = New Size(67, 25)
elseif i=1 then
CellCollection(1).Size = New Size(118, 25)
elseif i=2 then
CellCollection(2).Size = New Size(57, 25)
elseif i=3 then
CellCollection(3).Size = New Size(214, 25)
elseif i=4 then
CellCollection(4).Size = New Size(236, 25)
end if
Next

   Return CellCollection
End Function

5、打印和导出PDF不能很好的支持中文

如果字体设置成宋体,打印出来会是小方块,建议使用“微软雅黑“、“楷 体_GB2312”、“隶书”等。



标签:

本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@pclwef.cn

文章转载自:转自博客园 作者风崖

为你推荐

  • 推荐视频
  • 推荐活动
  • 推荐产品
  • 推荐文章
  • 慧都慧问
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP