尝试调用 CreateObject("Word.Application") 时出现错误,它无法在 IE9.0 内运行的 win7 上创建 Word 应用程序对象(已检查兼容视图),并且我的 PC 上安装了 MS Office Word 2007。我从一个从网页(jsp)调用的VB脚本调用它。
任何想法都非常感谢。!
Set ObjSpellChck= CreateObject("Word.Application")
If (IsEmpty(ObjSpellChck)) Then
MsgBox "Could not create Spell Check Object"
Exit Sub
End If
If Err.Number <> 0 OR Err.Number = 429 Then
MsgBox "Please install the 'Spell Check' ActiveX Control", 64
Err.Clear
On Error GOTO 0
Exit Sub
End If