在文件打开时禁止MS Word中的对话框警告

时间:2013-11-18 11:18:09

标签: html vba ms-word automation

我在VBA中使用OLE自动化来打开几百个htm文件并将它们保存为word doc文件。

有时会出现此对话框:

Linked style sheets are only supported in web format files.  By saving to this format, all links to style sheets will be lost.

我将Application.displayalerts设置为false - 有没有办法忽略该特定对话框并继续执行。

2 个答案:

答案 0 :(得分:1)

Excel接受Application.DisplayAlerts = none,Word使用三个Long常量:wdAlertsNone,wdAlertsAll和wdAlertsMessageBox。如果你使用wdAlertsNone,你的代码应该工作;)

答案 1 :(得分:1)

在致电SaveAs()之前尝试添加此行:

Application.ActiveDocument.OptimizeForWord97 = True