Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
2
Posts with Downvotes
2
Downvoting Members
1
1 Commented Post
0 Endorsements
~5K People Reached
Favorite Forums

4 Posted Topics

Member Avatar for fiaworkz

I am developing a program that gets the html source code of a certain webpages in a website. I already developed one program that does so, here's the sample code Dim request As System.Net.HttpWebRequest = System.Net.HttpWebRequest.Create(TextBox2.Text) Dim response As System.Net.HttpWebResponse = request.GetResponse() Dim sr As System.IO.StreamReader = New System.IO.StreamReader(response.GetResponseStream()) Dim …

0
89
Member Avatar for Alleyn

Seems this will not work now because HMA recently had some changes in its source [QUOTE=codeorder;1627735]See if this helps. [B]1 Button, 1 ListBox[/B] [CODE]Public Class Form1 Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click getHTML("http://hidemyass.com/proxy-list/") End Sub Private myWebResponse As Net.HttpWebResponse Private myStream As IO.Stream Private …

Member Avatar for fiaworkz
0
1K
Member Avatar for fiaworkz

I need to output "Exceptional Innovation" <div id="basic-info"> <h1 class="fn org"> <span> Exceptional Innovation </span> Here's my Code [CODE] RichTextBox1.Text = htmlsource Dim myMatch As New System.Text.RegularExpressions.Regex("(?<=<div id=""basic-info""> <h1 class=""fn org""> <span>).+?(?<=</span>)", RegexOptions.IgnoreCase Or RegexOptions.Compiled) Dim matches As MatchCollection = myMatch.Matches(RichTextBox1.Text) For Each itemcode As Match In matches Dim output …

Member Avatar for TechSupportGeek
0
232
Member Avatar for killerbeat

I got the same problem! but i need to use regex. does anyone know how I can fix my codes using regex?

Member Avatar for fiaworkz
0
3K

The End.