After IE goes away I still need using VBA to be able to request a web page and receive the retuned contents.
Here is a test call i put together for this forum:
The main thing is to be able to use some browser after IE goes away and to be able to receive the output from the website.
Thanks ahead of time for any help.
Sub testcall()
Dim http As Object
Dim JSON As Object
Dim IE As Object
Dim IE_URL As String
Set IE = CreateObject("InternetExplorer.Application")
With IE
.Visible = True
IE_URL = "http://www.vbaexpress.com/"
.Navigate IE_URL, 14, "_self", Null ', header2
Do Until .readyState = 4: Application.Wait (Now + TimeValue("0:00:01")): Loop
Debug.Print .document.body.innerText
' Set oJson = ParseJSONx(.document.body.innerText)
End With
End Sub