0
このエラーは、「オブジェクトiwebbrowser2のメソッド・ドキュメントが失敗しました」です。以下のコードを見てください。オブジェクトiwebbrowser2のメソッド・ドキュメントが失敗しました
Sub getIE()
Dim sh As Object, oWin As Object, IE As Object
Set sh = CreateObject("Shell.Application")
For Each oWin In sh.Windows
If TypeName(oWin.document) = "HTMLDocument" Then
Set IE = oWin
Exit For
End If
Next
MsgBox IE.document.URL
End Sub
すべてのInternet Explorer(またはChrome)ウィンドウが閉じているかどうかを確認します –