Code:
Dim objMSHTML As New MSHTML.HTMLDocument
Dim objDocument As MSHTML.HTMLDocument

Set objDocument = objMSHTML.createDocumentFromUrl("www.hotmail.com"), vbNullString)

While objDocument.readyState <> "complete"
    DoEvents
Wend

WebBrowser1.navigate "about:blank"
WebBrowser1.Document.Write (objDocument)
.Write will shows the following output: [object]. While the object in as MsgBox shows the full HTML in String. How can i make this work. objDocument.toString is not working.

Thank in advanced