The function below works fine when i run it on my local machine but returns blank page (no error) when i run it on a virtual machine... any help to fix this problem is appreciated..
Private Function Get_HTML (up_http)
Dim aRequest
Set aRequest = CreateObject ("Microsoft.XMLHTTP")
aRequest.Open "GET", up_http, False
aRequest.Send
Get_HTML = aRequest.responsetext
Set aRequest = Nothing
End Function