This is my file:
http://iat.awardspace.com/text.txt
This is my code:
VB Code:
Private Sub btnGrab_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnGrab.Click Dim externalPage() = Split(WebClient1.DownloadString("http://iat.awardspace.com/text.txt"), vbCrLf) For i As Integer = 0 To UBound(externalPage) If externalPage(i).Contains("S") Then TextBox1.Text = TextBox1.Text & externalPage(i).ToString & vbNewLine Next End Sub
And this is what happens when I execute it:
![]()




Reply With Quote