在我的 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
这些错误的原因可能是什么?如何解决?