Click here to Skip to main content
15,889,116 members
Articles / Desktop Programming / Win32

Making a Search Engine

Rate me:
Please Sign up or sign in to vote.
4.94/5 (51 votes)
3 May 2013CPOL6 min read 241.7K   27.6K   124  
This article discusses the making of a search engine.
Public MustInherit Class Ipanda
    Public MustOverride Sub Crawl(ByVal url As String)

    Protected Delegate Sub Task()
    Protected _working As Boolean
    Protected _url, _urlhash As String
    Public ReadOnly Property Busy As Boolean
        Get
            Return _working
        End Get
    End Property

    Public ReadOnly Property URL As String
        Get
            Return _url
        End Get
    End Property

    Public ReadOnly Property URL_Hash As String
        Get
            Return _urlhash
        End Get
    End Property

    Protected Sub speak(ByVal msg As String)
        Console.WriteLine(msg)
    End Sub
End Class

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

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


Written By
Student
India India
I just love coding. But due to my studies it became very tough for me to manage both.

Comments and Discussions