CreateObject("Word.Application") を呼び出そうとするとエラーが発生し、IE9.0 内で実行されている win7 で Word アプリケーション オブジェクトを作成できず (互換性のあるビューがチェックされています)、PC に MS Office Word 2007 がインストールされています。これは、Web ページ (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