Dim wc As New Net.WebClient()
Try
With wc
Dim sReader As New IO.StreamReader(.OpenRead("http://www.xtremedotnettalk.com/t75697.html"))
RichTextBox1.AppendText(sReader.ReadToEnd)
sReader.BaseStream.Flush()
sReader.Close()
sReader = Nothing
End With
Catch ex As Exception
MessageBox.Show(ex.Message)
End Try