私のVB6アプリケーションでは、一部の顧客PCで次のようなエラーが発生することがあります
Automation error
The remote procedure call failed.
以下に示すコードでエラーが発生します
Dim WithEvents Web_popup As SHDocVw.InternetExplorer
Set Web_popup = Nothing
Set Web_popup = New SHDocVw.InternetExplorer
Set ppDisp = Web_popup.Application
以下のコードについても
Dim iE As New SHDocVw.InternetExplorer iE.Navigate "www.example.com", 4 + 8
iE.Visible = True
これらのエラーの原因は何ですか? それを解決する方法は?