Foxtable(狐表)用户栏目专家坐堂 → 打印表问题


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

主题:打印表问题

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


加好友 发短信
等级:版主 帖子:85326 积分:427815 威望:0 精华:5 注册:2012/10/18 22:13:00
  发帖心情 Post By:2013/9/13 19:52:00 [显示全部帖子]

类似下面代码

Dim t As Table = Tables("报价表")
Dim temp As Double = t.Grid.Rows(0).Height
t.Grid.Rows(0).Height = 0

With t.PrintInfo
    .Title = "对账明细报表"
    .PageFooter = "第[PageNo]页,共[PageCount]页"
    .PageFooterLine = True
    .PaperKind = 9
    .LandScape = True
    .FitIntoPage = True
.PrintFixedCols = False
End With

t.Print(True,True)
t.Grid.Rows(0).Height = temp

 回到顶部