DigiOz Yahoo DLL Version 1.0.0.0 (for .NET 2.0)
================================================

DLL Name: digioz.yahoo.dll
Purpose:  To use the Yahoo Web API to Perform a search on either a Windows or Web Application.

How to Use it
=============

1- Start a new VB.NET Windows Application Solution.

2- Open the "Solution Explorer" window.

3- Right-Click on References Folder inside of Solution Explorer for your project.

4- Select "Add Reference" from the menu given. 

5- Click on the "Projects" Tab, and click on "Browse" button.

6- Find the digioz.yahoo.dll file from the location you downloaded and saved it to, select it and hit Open.

Sample usage of this DLL:
=========================
Dim LicenseKey As String = "<Enter Yahoo Key Here>"
Dim srch1 As New digioz.yahoo.clsYahoo
Dim i As Integer = 0
txtResults.Text = ""

srch1.LicenseKey = LicenseKey
srch1.SearchGoogle(txtSearch.Text, CInt(cmbPages.SelectedItem))

For i = 0 To srch1.PageItemCount - 1
            txtResults.Text &= "Title:       " & srch1.ResultList.Item(i).title & vbNewLine
            txtResults.Text &= "URL:         " & srch1.ResultList.Item(i).URL & vbNewLine
            txtResults.Text &= "Cache Size:  " & srch1.ResultList.Item(i).cacheSize & vbNewLine
            txtResults.Text &= "Description: " & srch1.ResultList.Item(i).description & vbNewLine
            txtResults.Text &= "------------------------------------------------------------" & vbNewLine
Next

lblResultCount.Text = srch1.TotalResultCount.ToString()
lblResultItemCount.Text = srch1.PageItemCount.ToString()






