Click here to Skip to main content
15,881,455 members
Articles / Programming Languages / VBScript

Small Web Agents using VB - Part II

Rate me:
Please Sign up or sign in to vote.
3.80/5 (5 votes)
12 Aug 2002CPOL1 min read 166.6K   2K   26   28
Small Web Agents using VB - Part II

Introduction

In the previous article, we saw a simple VB application which will pull out the HTML page of a particular URL. In this article, we will build a small web crawler which will crawl through all the links in the given URL.

  1. Setting up the Visual Basic Environment with required Components and Libraries:
    • Open Visual Basic and create a new project (user Standard EXE).
    • Select Project -> References from the main menu and add the following Microsoft Libraries:
      • Microsoft HTML Object Library
    • Add Microsoft Windows Common Controls to the toolbox as follows. Select Project -> Components from the main menu. The Components window will open. With the controls tab selected, scroll down and click the check box preceding the components:
      • Microsoft Windows Common Control 6.x
  2. Set up the UI for the Crawler
    • Add a label, two button controls, a listbox, and a treeview control as below:

      Click to enlarge image

  3. Add the code for the Crawler:
    • On click of the start button, populate the list box with all the links under the given URL:
      VB.NET
      Private Sub cmdStart_Click()
      '
      	'1 will populate lstlinks with all the parent links 
               'in the requested URL
      	getLinks txtURL.Text, 1
      			'
      End Sub
    • The getlinks function based on the second parameter populates either the listbox or the treeview. Here since the parameter is 1, it populates the listbox with all the links under the URL:
    • VB.NET
      Private Sub getLinks(strURL As String, iParentChild As Integer, _
      	Optional iParentNo As Integer)
      '
          Dim objLink As HTMLLinkElement
          Dim objMSHTML As New MSHTML.HTMLDocument
          Dim objDoc As New MSHTML.HTMLDocument
          Dim objNode As Node
          '
          Set objDoc = objMSHTML.createDocumentFromUrl(txtURL.Text, vbNullString)
          '
          MousePointer = vbHourglass
          While objDoc.readyState <> "complete"
              DoEvents
          Wend
          'get all Links
          For Each objLink In objDoc.links
          '
              If iParentChild = 1 Then
              '
                  lstLinks.AddItem objLink
              '
              ElseIf iParentChild = 2 Then
              '
                  'lstInnerLinks.AddItem objLink
                 
                  Set objNode = trvLinks.Nodes.Add(iParentNo, tvwChild)
                  objNode.Text = objLink
                  'objNode.Image = "leaf"
              '
              End If
          '
          Next
          MousePointer = vbNormal
      '
      End Sub
    • If the user wishes to go further down with some of the links, then she/he can select the links and press Get Inner Links Button:
      VB.NET
      Private Sub cmdGet_Click()
      '
          Dim iCount As Integer
          'Dim objNode As New Node
          If lstLinks.SelCount = 0 Then
          '
              MsgBox "Please Select a Link"
              Exit Sub
          Else
          '
              'objNode.Text = lstLinks.Text
              'For iCount = 0 To lstLinks.ListCount - 1
              iCount = 0
              While iCount <= lstLinks.ListCount - 1
              
                  If lstLinks.Selected(iCount) Then
                      
                      trvLinks.Nodes.Add , , , lstLinks.List(iCount)
                      getLinks lstLinks.List(iCount), 2, trvLinks.Nodes.Count
                      lstLinks.RemoveItem (iCount)
                      lstLinks.Refresh
                  Else
                      iCount = iCount + 1
                  End If
                  
               Wend
              'Next
               
          '
          End If
      '
      End Sub
    • All the inner links will get populated inside the Treeview. Now if the user further wishes to drilldown, he can double click on those URLs in the treeview:
      VB.NET
      Private Sub trvLinks_DblClick()
      '
          getLinks trvLinks.SelectedItem.Text, 2, trvLinks.SelectedItem.Index
      '
      End Sub
    • Then finally the screen would look something like this:

      Click to enlarge image

History

  • 12th August, 2002: Initial post

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
India India
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionInteresting Pin
Member 1575414031-Aug-22 20:25
Member 1575414031-Aug-22 20:25 
QuestionDecided to learn VB Pin
Member 1127369529-Nov-14 8:30
Member 1127369529-Nov-14 8:30 
GeneralMy vote of 5 Pin
Manoj Kumar Choubey28-Mar-12 0:07
professionalManoj Kumar Choubey28-Mar-12 0:07 
GeneralMy vote of 5 Pin
viral.sharma13-Feb-11 18:32
viral.sharma13-Feb-11 18:32 
QuestionGopi - Are you interested? Search Engine Expert: Building Web 3.0 Social Networking People Search Engine, Do You Want To Be The King Of The Internet? Pin
rapiddata30-Dec-06 4:12
rapiddata30-Dec-06 4:12 
GeneralcreateDocumentFromUrl Pin
fra_mimi10-Sep-06 22:04
fra_mimi10-Sep-06 22:04 
GeneralThe double-click code is not working Pin
legoman551-Apr-06 17:08
legoman551-Apr-06 17:08 
QuestionIs there a part I for this article. Pin
legoman5527-Mar-06 20:07
legoman5527-Mar-06 20:07 
GeneralProgrammaticaly open the links Pin
Aman Bhandari28-Feb-05 10:05
Aman Bhandari28-Feb-05 10:05 
GeneralRe: Programmaticaly open the links Pin
Mamta Suri15-Jul-05 5:03
Mamta Suri15-Jul-05 5:03 
GeneralcreateDocumentFromUrl Pin
Jack Clift27-Feb-05 21:10
Jack Clift27-Feb-05 21:10 
GeneralRe: createDocumentFromUrl Pin
Anonymous23-Jun-05 21:58
Anonymous23-Jun-05 21:58 
GeneralRe: createDocumentFromUrl Pin
tienpv6-Nov-05 15:40
tienpv6-Nov-05 15:40 
Generalusing activex dll in asp page Pin
R Keller24-Jul-04 19:26
sussR Keller24-Jul-04 19:26 
GeneralMore features Pin
cadessi23-Jan-04 4:00
cadessi23-Jan-04 4:00 
QuestionHow to get the Plain text from the link Pin
dsdon1023-Oct-03 14:15
dsdon1023-Oct-03 14:15 
GeneralRuntime Error! Pin
vtk26-May-03 18:39
vtk26-May-03 18:39 
GeneralRe: Runtime Error! Pin
satyaprakashrathore24-Jun-08 21:39
satyaprakashrathore24-Jun-08 21:39 
GeneralVB.net Pin
Anonymous5-Nov-02 4:05
Anonymous5-Nov-02 4:05 
GeneralRe: VB.net Pin
Adi Scale Arumugam13-Oct-04 20:19
sussAdi Scale Arumugam13-Oct-04 20:19 
GeneralRe: VB.net Pin
itsmuthu29-Oct-09 23:21
itsmuthu29-Oct-09 23:21 
GeneralWeb components instead of Pin
Anonymous13-Aug-02 7:34
Anonymous13-Aug-02 7:34 
GeneralRe: Web components instead of Pin
Gopi Subramanian15-Aug-02 19:21
Gopi Subramanian15-Aug-02 19:21 
GeneralGetting errors using VB 6 Pin
Ammar12-Aug-02 23:50
Ammar12-Aug-02 23:50 
GeneralRe: Getting errors using VB 6 Pin
Gopi Subramanian13-Aug-02 0:07
Gopi Subramanian13-Aug-02 0:07 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.