我想将一份word模板 打印5份,每页都显示页码 1-5......5-5
请问如何实现?
我在模板中 是这样的 第#页/共$页
代码 :
Dim tm As String = ProjectPath & "Attachments\test.docx"
Dim fl As String = ProjectPath & "Reports\test.doc"
Dim wrt As New WordReport(Tables("table1"), tm, fl)
wrt.Replace("$", 5) '替换总页码
wrt.Replace("#", 1) '替换当前页
wrt.Build() '生成报表
wrt.Show() '显示报表
请问老师,我如何打印5页生成在一个文件?不要分开成5个文件。