Ok, for the visual effect of watching and retrieving I will suggest the webbrowser control (WB).
[tt]
Option Explicit
Dim Wait As Boolean, Good As Boolean
Private Sub Command1_Click()
Wait = False
Good = False
WB.Navigate Text1.Text
Do While Wait = False
Doevents
Loop
If Good = True Then Debug.Print WB.Document.body.innerText
End Sub
Private Sub WB_DocumentComplete(ByVal pDisp As Object, URL As Variant)
On Error GoTo WB_DocumentCompleteError
If (Trim(URL) <> ""

And (InStr(1, URL, Text1.Text) > 0) Then Wait = True
Exit Sub
WB_DocumentCompleteError:
MsgBox Err.Description
End Sub
Private Sub WB_TitleChange(ByVal Text As String)
On Error GoTo WB_TitleChangeError
If UCase(Trim(Text)) <> UCase(Trim("Cannot find server"

) Then Good = True
Exit Sub
WB_TitleChangeError:
MsgBox Err.Description
End Sub
[/tt]
This is not quite complete (close) but it should get well on your way.
Good Luck