Foxtable(狐表)用户栏目专家坐堂 → [求助]代码优化


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

主题:[求助]代码优化

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


加好友 发短信
等级:一尾狐 帖子:422 积分:3430 威望:0 精华:0 注册:2015/5/20 8:44:00
[求助]代码优化  发帖心情 Post By:2018/1/4 17:30:00 [显示全部帖子]

Dim t As Table = e.Form.Controls("Table1").Table
For Each r1 As Row In t.GetCheckedRows()
    r1("已打印") = True
    Dim Bar As New BarCodeBuilder
    Bar.Symbology = Barpro.Symbology.QRCode
    Bar.Code = r1("箱号")
    Bar.BarRatio = 0.3
    Bar.BarHeight = 8
    bar.SaveImage(ProjectPath & "Images\myimg.wmf",300)
    Dim tm As String  = ProjectPath & "Attachments\物料标签.doc" '指定模板文件
    Dim fl1 As String = ProjectPath & "Reports\物料标签\" & r1("箱号") & "物料标签.doc"    
    Dim wrt As New WordReport(Tables("标签创建"),tm,fl1)
    wrt.Build() '逐行生成报表    
    wrt.Quit() '退出    
Next

老师帮忙看下,这个导出报表的速度比较慢,有什么办法可以优化的?

 回到顶部