我在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 - 有没有办法忽略该特定对话框并继续执行。
答案 0 :(得分:1)
Excel接受Application.DisplayAlerts = none,Word使用三个Long常量:wdAlertsNone,wdAlertsAll和wdAlertsMessageBox。如果你使用wdAlertsNone,你的代码应该工作;)
答案 1 :(得分:1)
在致电SaveAs()
之前尝试添加此行:
Application.ActiveDocument.OptimizeForWord97 = True