DigiOz Installed Software Library Version 1.0.0.0 (for .NET 2.0)
================================================================

DLL Name: digioz.machine.software.dll
Purpose:  To retrieve a list of all installed software on a machine.

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.machine.software.dll file from the location you downloaded and saved it to, select it and hit Open.

Sample usage of this DLL:
=========================
Imports System
Imports Microsoft.Win32
Imports digioz.machine.software

Public Class Form1

    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        Dim loInstalledSoftware As New InstalledSoftware
        Dim laApps As ArrayList = loInstalledSoftware.Apps

        laApps = loInstalledSoftware.SortArrayList(laApps, 0, laApps.Count - 1, "DisplayName")
        Dim lsSoftwareInfo As SoftwareInfo = Nothing

        For Each lsSoftwareInfo In laApps
            lstInstalledApplications.Items.Add(lsSoftwareInfo.ToString())
        Next
    End Sub

End Class







