以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- [求助]打印表内容问题求助 (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=94465) |
-- 作者:风中凌乱 -- 发布时间:2016/12/24 10:42:00 -- [求助]打印表内容问题求助 用下面代码打印表: Dim doc As New PrintDoc \'定义一个报表 Dim rt As New prt.RenderTable() \'定义一个表格对象 Dim rx As New prt.RenderText \'定义一个文本对象 Dim CurRow As Row = Tables("生产仪器请检附表01").Current \'加入标题 rx.text = "标题一" rx.Style.FontBold = True \'字体加粗 rx.Style.FontSize = 18 \'大体大小为16磅 rx.Style.TextAlignHorz = prt.AlignHorzEnum.Center \'水平居中排列 rx.Style.Spacing.Bottom = 3 \'和下面的对象(表格)距离3毫米 doc.Body.Children.Add(rx) \'加入到报表中 \'指定行数?列数?列宽?行高 rt.Rows.Count = 10 \'设置总行数 rt.Cols.Count = 6 \'设置总列数 rt.Height = 90 \'设置表格的高度为80毫米 rt.Rows(6).Height = 10 \'设置第7行(显示备注的行)的高度为40毫米,剩余高度被平均分排到其他行 \'设置合并单元格 rt.Cells(3,0).SpanRows = 6 \'第1行第5个单元格向下合并6行(用于显示照片) rt.Cells(0,1).SpanCols = 3 \'第5行第2个单元格向右合并3列(用于显示地址) rt.Cells(9,1).SpanCols = 5 \'第7行第1个单元格向右合并5列(用于显示备注) \'设置表格样式 rt.CellStyle.Spacing.All = 1 \'单元格内容缩进1毫米 rt.Style.GridLines.All = New prt.Linedef \'设置网格线 rt.Style.TextAlignVert = prt.AlignVertEnum.Center \'内容垂直居中 rt.Rows(9).Style.TextAlignVert = prt.AlignVertEnum.Top \'下面很简单,指定每一个单元格的内容 rt.Cells(0,0).Text= "产品名称" rt.Cells(0,1).Text = CurRow("产品名称") rt.Cells(1,0).Text= "生产批次" rt.Cells(1,1).Text = CurRow("生产批次") rt.Cells(0,4).Text= "产品型号" rt.Cells(0,5).Text = CurRow("第三列") rt.Cells(1,2).Text= "请检人员" rt.Cells(2,2).Text= "请检日期" rt.Cells(2,3).Text = CurRow("第一列") rt.Cells(1,4).Text= "接检人员" rt.Cells(2,4).Text= "接检日期" rt.Cells(3,0).Text= "仪器编号" rt.Cells(3,1).Text = CurRow("第四列") rt.Cells(4,1).Text = CurRow("第四列") rt.Cells(5,1).Text = CurRow("第四列") rt.Cells(6,1).Text = CurRow("第四列") rt.Cells(7,1).Text = CurRow("第四列") rt.Cells(8,1).Text = CurRow("第四列") rt.Cells(3,2).Text = CurRow("第四列") doc.Body.Children.Add(rt) \'将表格对象加入到报表中 Doc.Preview() \'预览报表 结果如附件图片。 2、如何在仪器编号项输入某一列的仪器编号? 3、如何设置单元格内容上下左右居中 谢谢 |
-- 作者:狐狸爸爸 -- 发布时间:2016/12/24 10:47:00 -- 1、主标题和副标题,可以参考: http://www.foxtable.com/webhelp/scr/2735.htm 2、不明白你的意思。 3、左右居中: http://www.foxtable.com/webhelp/scr/1170.htm |
-- 作者:风中凌乱 -- 发布时间:2016/12/24 10:58:00 -- 谢谢老师,第二个问题意思是在表“生产仪器请检附表01”的仪器编号列下面所有仪器编号数据都列在打印表的仪器编号项。 |
-- 作者:有点蓝 -- 发布时间:2016/12/24 11:28:00 -- 参考:http://www.foxtable.com/webhelp/scr/2747.htm 取出这一列的值,然后填充
|