Asynch Webqueries

E

Excel dweeb

Turns out that the construct:

Sub testget()

Dim oHTTP As MSXML2.XMLHTTP30
Dim arrURL As String, strURL As String

Dim strResponse As String

arrURL = "http://www.abc.com/"
Set oHTTP = New MSXML2.XMLHTTP30
strURL = Trim(arrURL)
oHTTP.Open "GET", strURL, True
oHTTP.send
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top