A
Arjayen
I am attempting to navigate to a web page from an Access application with the
intent of parsing the web page. I'm getting an automation error #2147417848
- "The object invoked has disconnected from its clients."
It occurs on the statement: Set oPAGE = oIE.Document
The code preceeding the statement is:
Dim oIE as SHDocVw.InternetExplorer
Dim oPAGE as MSHTML.HTMLDocument
Set oIE = CreateObject("InternetExplorer.Application")
oIE.Navigate(URL)
Set oPAGE=oIE.Document
The web page opens in IE correctly but I get the error on the Set oPAGE.
I've studied the Navigate Method at the MSDN Library and can't see that any
of the optional parameters are needed.
I would appreciate some help.
intent of parsing the web page. I'm getting an automation error #2147417848
- "The object invoked has disconnected from its clients."
It occurs on the statement: Set oPAGE = oIE.Document
The code preceeding the statement is:
Dim oIE as SHDocVw.InternetExplorer
Dim oPAGE as MSHTML.HTMLDocument
Set oIE = CreateObject("InternetExplorer.Application")
oIE.Navigate(URL)
Set oPAGE=oIE.Document
The web page opens in IE correctly but I get the error on the Set oPAGE.
I've studied the Navigate Method at the MSDN Library and can't see that any
of the optional parameters are needed.
I would appreciate some help.