我在尝试调用CreateObject(“Word.Application”)时遇到错误,它无法在运行IE9.0内部的win7上创建Word应用程序对象(已检查兼容视图)并且我在我的MS上安装了MS office word 2007 PC。我是从一个从网页(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
答案 0 :(得分:1)
Microsoft Word控件未标记为“可安全执行脚本”,因此无法在网页中使用。
你应该停止使用VBScript。它不适用于Internet Explorer以外的浏览器,并且很可能完全停止在较新版本的Explorer下工作。 (已经有一些报道称它在IE10中可能无法正常运行。)