以文本方式查看主题 - Foxtable(狐表) (http://foxtable.com/bbs/index.asp) -- 专家坐堂 (http://foxtable.com/bbs/list.asp?boardid=2) ---- [求助]空行打印数值为0 (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=158118) |
-- 作者:hanlingli111999 -- 发布时间:2020/11/9 10:10:00 -- [求助]空行打印数值为0 老师好,我其中一数据列为单精度小数,该列参与公式计算,未填充数据,空白 可打印时显示该列数据为0,请问打印时怎么能使该列显示空白
|
-- 作者:有点蓝 -- 发布时间:2020/11/9 10:26:00 -- <iif([某某列] is null,\'\',[某某列])> |
-- 作者:hanlingli111999 -- 发布时间:2020/11/9 11:09:00 -- 老师,代码放在哪里呀 |
-- 作者:有点蓝 -- 发布时间:2020/11/9 11:10:00 -- 放到模板里。打印是怎么做的? |
-- 作者:hanlingli111999 -- 发布时间:2020/11/9 11:19:00 -- 打印用的帮助代码 Dim doc As New PrintDoc \'定义一个新报表 Dim rt As New prt.RenderTable \'定义一个新表格 Dim tb As Table = Tables("计算表") Dim ColNames As New List(Of String) For Each cl As Col In tb.Cols \'排除隐藏列 If cl.Visible Then ColNames.Add(cl.Name) End If Next Dim rx As New prt.RenderText rx.Text = ApplicationTitle rx.Style.Font = New Font("宋体", 16, FontStyle.Bold) rx.Style.TextAlignHorz = prt.AlignHorzEnum.Center rx.Style.Spacing.Bottom = 3 Doc.body.Children.Add(rx) rt.SplitHorzBehavior = prt.SplitBehaviorEnum.SplitIfNeeded \'表格宽度超出页宽时,可以水平换页 rt.Style.Font = tb.Font 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.Center \'数据水平靠右 End If For r As Integer = 0 To tb.Rows.Count - 1 \'开始填入该列内容 rt.Cells(r + 1, c).Text = tb.Rows(r)(ColNames(c)) Next Next rt.Cols.Insert(0) \'在左边插入一列,用于打印行号 rt.Cols(0).Width = 10 \'设置行号列的宽度 For i As Integer = 1 To rt.Rows.Count - 1 rt.Cells(i,0).text = i \'逐行写入行号 Next rt.Style.Gridlines.All = New prt.Linedef(Color.Gray) \'灰色网格线 rt.CellStyle.Spacing.All = 0.5 \'单元格内距设为0.5毫米 rt.Rows(0).Style.TextAlignHorz = prt.AlignHorzEnum.Center \'第一行内容水平居中 rt.RowGroups(0,1).Header = prt.TableHeaderEnum.All \'利用行组,将第一行设为表头. doc.Body.Children.Add(rt) \'将表格加入到报表 doc.PageSetting.Landscape = True \'横向打印 Dim my As New prt.RenderTable my.Cells(0,0).Text = Date.Today my.Cells(0,1).Text = ApplicationTitle my.Cells(0,2).Text = "第[PageNo]页,共[PageCount]页" my.Cols(0).Style.TextAlignHorz = prt.AlignHorzEnum.Left my.Cols(1).Style.TextAlignHorz = prt.AlignHorzEnum.Center my.Cols(2).Style.TextAlignHorz = prt.AlignHorzEnum.Right my.Style.FontSize = 8 \'字体大小为8磅 Doc.PageFooter = my \'作为页眉使用 doc.Preview() |
-- 作者:有点蓝 -- 发布时间:2020/11/9 11:21:00 -- 比如 For r As Integer = 0 To tb.Rows.Count - 1 \'开始填入该列内容 if tb.Rows(r).isnull(ColNames(c)) = false rt.Cells(r + 1, c).Text = tb.Rows(r)(ColNames(c)) end if Next |
-- 作者:hanlingli111999 -- 发布时间:2020/11/9 11:53:00 -- 运行错误 |
-- 作者:有点蓝 -- 发布时间:2020/11/9 12:00:00 -- http://www.foxtable.com/bbs/dispbbs.asp?boardid=2&Id=150626 |
-- 作者:hanlingli111999 -- 发布时间:2020/11/9 12:22:00 -- 老师你给的代码如下,应放在什么位置?,我放在了打印代码中,运行错误 For r As Integer = 0 To tb.Rows.Count - 1 \'开始填入该列内容 if tb.Rows(r).isnull(ColNames(c)) = false rt.Cells(r + 1, c).Text = tb.Rows(r)(ColNames(c)) end if
|
-- 作者:有点蓝 -- 发布时间:2020/11/9 13:44:00 -- 替换原来代码中的 For r As Integer = 0 To tb.Rows.Count - 1 \'开始填入该列内容 rt.Cells(r + 1, c).Text = tb.Rows(r)(ColNames(c)) Next |