问题一:老师,用下面代码,关联表,明细表只5行数据,数据非常小,打开花30秒,有没有办法改进?
Dim tm As String = ProjectPath & "Attachments\订单表.docx"
Dim fl As String = ProjectPath & "Reports\订单表.docx"
Dim wrt As New WordReport(Tables("订单表"),tm,fl) '
wrt.Build() '
wrt.Show() '
问题二:按帮助,在“订单表”的选中,逻辑型,选中,单击不执行是什么原因?
'再例如根据已经勾选的行生成报表Word:
Dim rs As List(of Row) = Tables("订单表").GetCheckedRows
If rs.Count > 0 Then
Dim tm As String = ProjectPath & "Attachments\订单表.docx" '
Dim fl As String = ProjectPath & "Reports\订单表.docx" '
Dim wrt As New WordReport(Tables("订单表"),tm,fl) '定义一个WordReport
For Each r As Row In rs '逐行生成报表
wrt.BuildOne(r)
Next
wrt.Show() '显示报表
End If