Hi,

Is there a way to use xml to read a webpage:

  With CreateObject("msxml2.xmlhttp")
    .Open "get", URL, False: .send
    MsgBox .responseText
which works fine, but I don't want all the xml data, I just want the text without any of the formatting. Is this an option with xml?

abousetta