Foxtable(狐表)用户栏目专家坐堂 → [求助]专业报表因隐藏列出错(已解决)


  共有12550人关注过本帖树形打印复制链接

主题:[求助]专业报表因隐藏列出错(已解决)

帅哥哟,离线,有人找我吗?
czy
  1楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信 一级勋章 三级勋章 二级勋章
等级:超级版主 帖子:6318 积分:33963 威望:0 精华:10 注册:2008/8/31 20:56:00
  发帖心情 Post By:2011/11/28 11:19:00 [显示全部帖子]

MessageBox检查看看是哪个循环出了问题。

 回到顶部
帅哥哟,离线,有人找我吗?
czy
  2楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信 一级勋章 三级勋章 二级勋章
等级:超级版主 帖子:6318 积分:33963 威望:0 精华:10 注册:2008/8/31 20:56:00
  发帖心情 Post By:2011/11/28 11:31:00 [显示全部帖子]

表中有隐藏列导致的。

 回到顶部
帅哥哟,离线,有人找我吗?
czy
  3楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信 一级勋章 三级勋章 二级勋章
等级:超级版主 帖子:6318 积分:33963 威望:0 精华:10 注册:2008/8/31 20:56:00
  发帖心情 Post By:2011/11/28 14:39:00 [显示全部帖子]

以下是引用yyzlxc在2011-11-28 13:54:00的发言:
谢谢yangming老师的指教,此方法可行,已圆满解决问题,再次表示衷心感谢!!

 

这样不严谨吧?


 回到顶部
帅哥哟,离线,有人找我吗?
czy
  4楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信 一级勋章 三级勋章 二级勋章
等级:超级版主 帖子:6318 积分:33963 威望:0 精华:10 注册:2008/8/31 20:56:00
  发帖心情 Post By:2011/11/28 14:39:00 [显示全部帖子]

其实你要找到真正问题所在才行,那种方法并不可取。


 回到顶部
帅哥哟,离线,有人找我吗?
czy
  5楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信 一级勋章 三级勋章 二级勋章
等级:超级版主 帖子:6318 积分:33963 威望:0 精华:10 注册:2008/8/31 20:56:00
  发帖心情 Post By:2011/11/28 14:41:00 [显示全部帖子]

Dim doc As New PrintDoc '定义一个新报表
Dim tb As Table = Tables("订单")  '捆绑表
Dim ColNames As New List(Of String)
Dim prs As Integer = 40   '每页40行
Dim sum1 As Double = 0  '定义双精度变量(小计)
Dim sum2 As Double = 0
Dim tsum1 As Double = 0  '定义双精度变量(合计)
Dim tsum2 As Double = 0
For p As Integer = 0 To math.Ceiling(tb.Rows.Count / prs) - 1  '大循环,计算共几页
    ColNames.Clear
    Dim rt As New prt.RenderTable   '定义一个新表格
    For Each cl As Col In tb.Cols '排除隐藏列
        If cl.Visible Then
            ColNames.Add(cl.Name)
        End If
    Next
    rt.Width = "Parent.Width" '表格宽度等于容器宽度
    rt.CanSplitHorz = True  '表格宽度超出页宽时,可以水平换页
    rt.Style.Font = tb.Font
    rt.Style.Gridlines.All = New prt.Linedef(Color.Gray)  '灰色网格线
    rt.CellStyle.Spacing.All = 1.0   '单元格内距设为1.0毫米
    For c As Integer = 0 To ColNames.Count - 1 '逐列设置和填入内容       
        rt.Cells(0,c).Text = ColNames(c)   '列名作为标题
        rt.Cells(0,c).Style.TextAlignHorz = prt.AlignHorzEnum.Center   '标题内容水平居中       
        rt.Cols(c).Width = tb.Cols(ColNames(c)).PrintWidth '列宽等于实际列宽
        If tb.Cols(ColNames(c)).IsNumeric OrElse tb.Cols(ColNames(c)).IsDate Then '如果是数值或日期列
            rt.Cols(c).Style.TextAlignHorz = prt.AlignHorzEnum.Right '数据水平靠右
        End If
        For r As Integer = p * prs To math.min(tb.Rows.Count - 1,( p + 1) * prs - 1)  '小循环
            rt.Cells(r - p * prs + 1, c).Text = tb.rows(r)(c)
            If (ColNames(c)) = "银行存款" '设置格式
                rt.Cells(r - p * prs + 1, c).Text = format(tb.rows(r)(ColNames(c)),"00.00")
            ElseIf (ColNames(c)) = "大帐存款"
                rt.Cells(r - p * prs + 1, c).Text = format(tb.rows(r)(ColNames(c)),"00.00")
            Else
                rt.Cells(r - p * prs + 1, c).Text = tb.rows(r)(c)
            End If
        Next
    Next
    Sum1 = 0
    sum2 = 0
    For r As Integer = p * prs To math.min(tb.Rows.Count - 1,( p + 1) * prs - 1) '累计
        Sum1 =sum1 + tb.rows(r)("银行存款")
        sum2 =sum2 + tb.rows(r)("大帐存款")
    Next
    Tsum1 = tsum1 + sum1
    tsum2 = tsum2 + sum2
    rt.Rows.Count = rt.Rows.Count + 1 '增加小计行
    rt.Rows(rt.Rows.count -1)(4).text = "本页小计"
    rt.Rows(rt.Rows.count -1)(5).Text = format(sum1,"0.00")  '设置小计格式
    rt.Rows(rt.Rows.count -1)(6).Text = format(sum2,"0.00")
    If p < math.Ceiling(tb.Rows.Count / prs) - 1
        rt.BreakAfter = prt.BreakEnum.Page
    Else
        rt.Rows.Count = rt.Rows.Count + 1 '增加合计行
        rt.Rows(rt.Rows.count -1)(4).text = "合计"
        rt.Rows(rt.Rows.count -1)(5).Text = format(tsum1,"0.00") '设置合计格式
        rt.Rows(rt.Rows.count -1)(6).Text = format(tsum2,"0.00")
    End If
    doc.Body.Children.Add(rt)  '将表格加入到报表
Next
'设置页眉
Dim rx As New prt.RenderTable
rx.Cells(0,0).Text = Date.Today
rx.Cells(0,1).Text = "存款对账单"
rx.Cells(0,2).Text = "第[PageNo]页,共[PageCount]页"
rx.Cols(0).Style.TextAlignHorz = prt.AlignHorzEnum.Left '水平靠左
rx.Cols(0).Style.TextAlignVert = prt.AlignVertEnum.Bottom '垂直靠下
rx.Cols(1).Style.TextAlignHorz = prt.AlignHorzEnum.Center '水平居中
rx.Cols(2).Style.TextAlignHorz = prt.AlignHorzEnum.right '水平靠右
rx.Cols(2).Style.TextAlignVert = prt.AlignVertEnum.Bottom '垂直靠下
rx.Style.Borders.Bottom = New prt.LineDef '设置底边框
rx.CellStyle.Spacing.Bottom = 1 '底端内容缩进1.0毫米
rx.Cells(0,1).Style.FontSize = 14  '设置第二列行字号
rx.Cells(0,1).Style.FontBold = True '字体加粗
Doc.PageHeader = rx '作为页眉使用
Doc.Preview() '预览

 


 回到顶部
帅哥哟,离线,有人找我吗?
czy
  6楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信 一级勋章 三级勋章 二级勋章
等级:超级版主 帖子:6318 积分:33963 威望:0 精华:10 注册:2008/8/31 20:56:00
  发帖心情 Post By:2011/11/28 15:24:00 [显示全部帖子]

不会啊。

你将下面的代码放到系统模板的订单表中测试一下:

 

Dim doc As New PrintDoc '定义一个新报表
Dim tb As Table = Tables("订单")  '捆绑表
Dim ColNames As New List(Of String)
Dim prs As Integer = 40   '每页40行
Dim sum1 As Double = 0  '定义双精度变量(小计)
Dim sum2 As Double = 0
Dim tsum1 As Double = 0  '定义双精度变量(合计)
Dim tsum2 As Double = 0
For p As Integer = 0 To math.Ceiling(tb.Rows.Count / prs) - 1  '大循环,计算共几页
    ColNames.Clear
    Dim rt As New prt.RenderTable   '定义一个新表格
    For Each cl As Col In tb.Cols '排除隐藏列
        If cl.Visible Then
            ColNames.Add(cl.Name)
        End If
    Next
    rt.Width = "Parent.Width" '表格宽度等于容器宽度
    rt.CanSplitHorz = True  '表格宽度超出页宽时,可以水平换页
    rt.Style.Font = tb.Font
    rt.Style.Gridlines.All = New prt.Linedef(Color.Gray)  '灰色网格线
    rt.CellStyle.Spacing.All = 1.0   '单元格内距设为1.0毫米
    For c As Integer = 0 To ColNames.Count - 1 '逐列设置和填入内容       
        rt.Cells(0,c).Text = ColNames(c)   '列名作为标题
        rt.Cells(0,c).Style.TextAlignHorz = prt.AlignHorzEnum.Center   '标题内容水平居中       
        rt.Cols(c).Width = tb.Cols(ColNames(c)).PrintWidth '列宽等于实际列宽
        If tb.Cols(ColNames(c)).IsNumeric OrElse tb.Cols(ColNames(c)).IsDate Then '如果是数值或日期列
            rt.Cols(c).Style.TextAlignHorz = prt.AlignHorzEnum.Right '数据水平靠右
        End If
        For r As Integer = p * prs To math.min(tb.Rows.Count - 1,( p + 1) * prs - 1)  '小循环
            rt.Cells(r - p * prs + 1, c).Text = tb.rows(r)(c)
            If (ColNames(c)) = "银行存款" '设置格式
                'rt.Cells(r - p * prs + 1, c).Text = format(tb.rows(r)(ColNames(c)),"00.00")
            ElseIf (ColNames(c)) = "大帐存款"
                'rt.Cells(r - p * prs + 1, c).Text = format(tb.rows(r)(ColNames(c)),"00.00")
            Else
                rt.Cells(r - p * prs + 1, c).Text = tb.rows(r)(c)
            End If
        Next
    Next
    Sum1 = 0
    sum2 = 0
    For r As Integer = p * prs To math.min(tb.Rows.Count - 1,( p + 1) * prs - 1) '累计
        'Sum1 =sum1 + tb.rows(r)("银行存款")
        'sum2 =sum2 + tb.rows(r)("大帐存款")
    Next
    Tsum1 = tsum1 + sum1
    tsum2 = tsum2 + sum2
    rt.Rows.Count = rt.Rows.Count + 1 '增加小计行
    rt.Rows(rt.Rows.count -1)(4).text = "本页小计"
    rt.Rows(rt.Rows.count -1)(5).Text = format(sum1,"0.00")  '设置小计格式
    rt.Rows(rt.Rows.count -1)(6).Text = format(sum2,"0.00")
    If p < math.Ceiling(tb.Rows.Count / prs) - 1
        rt.BreakAfter = prt.BreakEnum.Page
    Else
        rt.Rows.Count = rt.Rows.Count + 1 '增加合计行
        rt.Rows(rt.Rows.count -1)(4).text = "合计"
        rt.Rows(rt.Rows.count -1)(5).Text = format(tsum1,"0.00") '设置合计格式
        rt.Rows(rt.Rows.count -1)(6).Text = format(tsum2,"0.00")
    End If
    doc.Body.Children.Add(rt)  '将表格加入到报表
Next
'设置页眉
Dim rx As New prt.RenderTable
rx.Cells(0,0).Text = Date.Today
rx.Cells(0,1).Text = "存款对账单"
rx.Cells(0,2).Text = "第[PageNo]页,共[PageCount]页"
rx.Cols(0).Style.TextAlignHorz = prt.AlignHorzEnum.Left '水平靠左
rx.Cols(0).Style.TextAlignVert = prt.AlignVertEnum.Bottom '垂直靠下
rx.Cols(1).Style.TextAlignHorz = prt.AlignHorzEnum.Center '水平居中
rx.Cols(2).Style.TextAlignHorz = prt.AlignHorzEnum.right '水平靠右
rx.Cols(2).Style.TextAlignVert = prt.AlignVertEnum.Bottom '垂直靠下
rx.Style.Borders.Bottom = New prt.LineDef '设置底边框
rx.CellStyle.Spacing.Bottom = 1 '底端内容缩进1.0毫米
rx.Cells(0,1).Style.FontSize = 14  '设置第二列行字号
rx.Cells(0,1).Style.FontBold = True '字体加粗
Doc.PageHeader = rx '作为页眉使用
Doc.Preview() '预览

 


 回到顶部