在打开时向自动调整宏添加定时延迟

时间:2016-03-31 17:28:13

标签: ms-word word-2010

以下是我在Word 2010中的Document_Open上运行的宏

Sub Document_Open()
Dim t As Table
For Each t In ActiveDocument.Tables
t.AutoFitBehavior wdAutoFitContent
Next t
End Sub

这会将所有表自动调整为窗口内容。 问题在于,文档上运行了另一个命令来填充表,Document_Open在填充表之前运行它,因此不会自动化我需要的内容。

我想在此宏中添加15秒的延迟,以允许在运行自动调整之前填充所有表。

0 个答案:

没有答案