This is a small function that allows a user to retrieve the text from a website minus the HTML.

VB Code:
  1. Public Function RemoveHtml(ByVal sURL As String) As String
  2.         Dim oHttpWebRequest As System.Net.HttpWebRequest
  3.         Dim oStream As System.IO.Stream
  4.         Dim sTemp As String
  5.         oHttpWebRequest = (System.Net.HttpWebRequest.Create(sURL))
  6.         Dim oHttpWebResponse As System.Net.WebResponse = oHttpWebRequest.GetResponse()
  7.         oStream = oHttpWebResponse.GetResponseStream
  8.         sTemp = System.Text.RegularExpressions.Regex.Replace(New System.IO.StreamReader(oStream).ReadToEnd(), "<[^>]*>", "")
  9.         oStream.Close()
  10.         oHttpWebResponse.Close()
  11.         Return sTemp
  12.     End Function

To use it simply pass in the url of the website that you want to retrieve the text from

VB Code:
  1. textbox1.text = RemoveHtml("http://www.vbforums.com")

Cheers
MarkusJ