This is the snippet of VBA code that I am using to capture the result of a Google search.
With CreateObject("Microsoft.XMLHTTP") 'this will return the complete colletion of characters
.Open "GET", This_Search_String_URL, False
.Send
This_Search_Result_String = .responseText
End With
In the past, it always returned the complete page source string.
It's not working for me now?
Regards
Alfred