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

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

How to Use it
=============
1- Obtain a YouTube Developer ID from http://youtube.com/signup?next=/my_profile_dev first. 

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

3- Open the "Solution Explorer" window.

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

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

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

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

Sample usage of this DLL:
=========================
Dim loYouTube As New digioz.youtube.youtube()
Dim loVideo As digioz.youtube.video = Nothing
Dim loVideos As Collection = Nothing

loYouTube.DevID = "XXXXXXXXXXX"		' YouTube Developer ID is 11 characters long
loYouTube.Page = 1
loYouTube.PerPage = 10
loYouTube.Tag = txtSearchTerm.Text

loVideos = loYouTube.SearchYouTube()

For Each loVideo In loVideos
	Response.Write("<img src=""" & loVideo.ThumbnailURL & """><br />")
	' output other properties here
Next







