如何解决使用 VBA 中的用户窗体更新 Word 中的 DocVariables
我在我的 word 模板中创建了 DocVariables,并且正在使用用户表单来允许用户输入来填充这些变量。
这是我一直在使用的代码:
Private Sub CommandButton1_Click()
Dim ReportTitle,reportSub As String
ReportTitle = Me.textBox1.Value
reportSub = Me.textBox2.Value
ActiveDocument.Variables("Report Title").Value = ReportTitle
ActiveDocument.Variables("Sub-Title").Value = reportSub
ActiveDocument.Fields.Update
Me.Repaint
End Sub
这确实将文本框中的值插入到变量中,但它不会更新字段,因此我必须手动转到每个字段并更新它。
你能告诉我我哪里出错了,以便我可以解决这个问题。
感谢任何和所有帮助。
解决方法
试试:
Private Sub CommandButton1_Click()
Application.ScreenUpdating = False
With ActiveDocument
.Variables("Report Title").Value = Me.textBox1.Value
.Variables("Sub-Title").Value = Me.TextBox2.Value
.Fields.Update
.PrintPreview
.ClosePrintPreview
End With
Me.Repaint
Application.ScreenUpdating = True
End Sub
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。